laravel-passport

    0熱度

    2回答

    我正在使用Password Grant Tokens爲移動應用程序構建API。當用戶試圖登錄到應用程序時,客戶端發送訪問令牌的請求。 有可能使用發送給他的電子郵件鏈接的用戶還沒有證實他的帳戶。我希望爲查詢添加一個附加條件並相應地提供錯誤響應。目前,由於Passport管理令牌部分,我無法直接進行。 這怎麼解決?如何在令牌請求中潛入併發送自定義響應(如果用戶帳戶存在任何問題)?然後繼續發送令牌。

    0熱度

    1回答

    我想在我的項目中使用Laravel護照,我遵循Laravel護照https://laravel.com/docs/5.3/passport的本教程。 繼本教程後,我得到Uncaught ReferenceError:require is not defined error。 請看看到我的文件: gulpfile.js var elixir = require('laravel-elixir');

    2熱度

    1回答

    身份驗證在客戶端發送Authorization=Bearer <access_token>的常規終端上使用'middleware' => 'auth:api'時正常工作。 但現在我想處理普通圖像下載請求,沒有授權標題,在查詢字符串中具有訪問令牌,如下所示:GET /picture/my_picture.png?access_token=1234。 我想在我的中間件這樣的事情,但我似乎無法頭添加到請

    0熱度

    2回答

    我添加了這兩個事件偵聽器以我:EventServiceProvider /** * The event listener mappings for the application. * * @var array */ protected $listen = [ 'Laravel\Passport\Events\AccessTokenCreated' => [ 'Ap

    3熱度

    3回答

    使用vagrant/homestead設置Laravel的5.3護照。直到我達到Password Grant Tokens 這裏沿着下面我發現這個GuzzleHttp片段,使崗位/oath/token: Route::get('/api_grant', function(){ $http = new GuzzleHttp\Client; $response = $http->

    0熱度

    1回答

    甚至有可能在一條路線上有多箇中間件。現在,我有我的身份驗證的中間件,這是在身份驗證默認的Web應用程序,讓AJAX請求:網絡 Route::post('/user/postAuthUserInfoAjax', [ 'uses' => '[email protected]', 'middleware' => ['auth'], ]); 我也希望我的移動應用程序,其中有一個A

    1熱度

    2回答

    當我請求URL重定向,我無法得到的access_token,它總是重定向到登錄 // First route that user visits on consumer app Route::get('/redirect', function() { // Build the query parameter string to pass auth information to our r

    0熱度

    1回答

    我正在嘗試在lumen中實施Passport。 我使用的是lumen-passport軟件包,我成功地將軟件包安裝在流明中,配置文件中給出。 我得到的迴應是空白或未經授權的,在api中。 在郵遞員,獲取方法 /oauth/tokens 給出Unauthorized.響應。 在郵遞員,Post方法 /oauth/token 'grant_type' => 'password', 'clie

    4熱度

    1回答

    當我使用laravel5.3的護照Password Grant Tokens this.$http.post('/oauth/token', this.form) .then(response => { console.log(response) }) 我得到這個消息 {"error":"invalid_credentials","message":"The u

    4熱度

    1回答

    我想添加一個自定義警衛Laravel使用護照,但與不同的模型(不是用戶),但當我嘗試設置用戶這個警衛它不工作。 配置/ auth.php: <?php return [ /* |-------------------------------------------------------------------------- | Authentication Defaults |--