I want to build an app with laravel 5 & dropbox API in which I want the API allow/cancel-warning to be displayed when you land on the homepage, not when you click a button. I tried different methods but I couldn`t make it work.
public function start(){
session(['user_id'=>1]);
$dKey = 'key';
$dSecret = 'secret';
$appName = 'app';
$appInfo = new Dropbox\AppInfo($dKey,$dSecret);
//store csrf token
$tokenStore = new Dropbox\ArrayEntryStore($_SESSION,'dropbox-auth-csrf-token');
//define auth details
$this->webAuth = new Dropbox\WebAuth($appInfo,$appName,'http://localhost:8000/dropbox/finish',$tokenStore);
$this->checkSession();
}
public function checkSession(){
$users = User::where('id','=',session('user_id'))->get();
if(isset($user[0]->dropbox_token)){
}
else{
$url = $this->webAuth->start();
//return Redirect::to($url);
//return Redirect::away($url);
//header('Location : '.$url);
}
}
The link in $url exists and its valid.
These(last 3 commented methods) are the methods i tried , including return redirect($url),is it possible to do this or am i wasting my time with this ?please help me out.
This code works for me:
return redirect()->away('https://www.dropbox.com');
Make sure you also add a return (i.e. return $this->checkSession();
) in start()
.