商用授权接口
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Route; | ... | @@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Route; |
4 | 4 | ||
5 | Route::group(['prefix' => 'client-credentials'], function () { | 5 | Route::group(['prefix' => 'client-credentials'], function () { |
6 | Route::get('getApp', "ClientCredentialsController@getApp"); | 6 | Route::get('getApp', "ClientCredentialsController@getApp"); |
7 | Route::get('token', "ClientCredentialsController@getAccessToken"); | 7 | Route::get('token', "ClientCredentialsController@getAccessToken")->middleware('throttle:10,1'); |
8 | }); | 8 | }); |
9 | //Route::get('test', "ClientCredentialsController@test"); | 9 | //Route::get('test', "ClientCredentialsController@test"); |
10 | 10 | ... | ... |
-
Please register or sign in to post a comment