Laravel 5:重定向到localhost / server外部的外部链接

时间:2015-03-20 01:47:35

标签: php dropbox-api laravel-5

我想用laravel 5& Dropbox API,我希望在您登陆主页时显示API允许/取消警告,而不是在您单击按钮时显示。 我尝试了不同的方法,但我无法使其发挥作用。

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);
        }

    }

$ url中的链接存在且有效。

这些(最后3个评论方法)是我尝试过的方法,包括返回重定向($ url),是可以这样做还是我在浪费时间?请帮帮我。

4 个答案:

答案 0 :(得分:36)

此代码适用于我:

return redirect()->away('https://www.dropbox.com');

确保您还在return $this->checkSession();中添加了回复(即start())。

答案 1 :(得分:5)

下面的代码可以使用

return redirect()->away('http://www.paypal.com');

这也有效。

return redirect('http://www.paypal.com');

答案 2 :(得分:1)

For https and such use the following

return redirect()->to($refererUrl);

答案 3 :(得分:0)

可以做到这一点,

use Redirect;

return Redirect::to('your url');

或者只是

return \Redirect::to('your url');