パスワードの付与を設定します(アプリのバックエンドです)。これで、_oauth/token
_に投稿要求を送信でき、Postmanで機能します。ただし、APIからユーザーを登録する場合はどうすればよいですか?
現在の_/register
_ルートを使用できることは理解していますが、その後、ユーザーをログインページにリダイレクトして、彼の資格情報で再度ログインする必要がありますか?
または、RegisterControllerのregistered()
関数で、_oauth/token
_ルートにリダイレクトする必要がありますか? (このため、5つのデータすべてを 'x-www-form-urlencoded'で送信していますが、動作しているように見えます。しかし、ヘッダーでいくつかを分離する必要がありますか?いつチャンスがあるかを尋ねる)。
または、 this guy のような_oauth/token
_メソッドに何かを追加する必要がありますか?実際に、ライブラリ内の_$request
_ methodで投稿された_AccessTokenController@issueToken
_データをキャッチしようとしましたが、parsedBody
配列を操作する方法がわかりませんでした。実際のライブラリから登録機能をトリガーした場合、登録またはログインしているかどうかはどうすればわかりますか?
たぶん私はいくつかの情報を逃しているかもしれませんが、このトピックに基づいたものを見つけることができませんでした。 Passportでユーザーの登録を処理する適切な方法は何ですか?
更新:受け入れられた回答は「登録」サイクルを示します。そしてその下に「ログイン」と「トークンの更新」の実装を追加しました。それが役に立てば幸い :)
APIでルートを作成します
_Route::post('register','Api\UsersController@create');
_
UsersControllerでメソッドcreate()
を作成します
_function create(Request $request)
{
/**
* Get a validator for an incoming registration request.
*
* @param array $request
* @return \Illuminate\Contracts\Validation\Validator
*/
$valid = validator($request->only('email', 'name', 'password','mobile'), [
'name' => 'required|string|max:255',
'email' => 'required|string|email|max:255|unique:users',
'password' => 'required|string|min:6',
'mobile' => 'required',
]);
if ($valid->fails()) {
$jsonError=response()->json($valid->errors()->all(), 400);
return \Response::json($jsonError);
}
$data = request()->only('email','name','password','mobile');
$user = User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => bcrypt($data['password']),
'mobile' => $data['mobile']
]);
// And created user until here.
$client = Client::where('password_client', 1)->first();
// Is this $request the same request? I mean Request $request? Then wouldn't it mess the other $request stuff? Also how did you pass it on the $request in $proxy? Wouldn't Request::create() just create a new thing?
$request->request->add([
'grant_type' => 'password',
'client_id' => $client->id,
'client_secret' => $client->secret,
'username' => $data['email'],
'password' => $data['password'],
'scope' => null,
]);
// Fire off the internal request.
$token = Request::create(
'oauth/token',
'POST'
);
return \Route::dispatch($token);
}
_
そして、新しいユーザーを作成した後、アクセストークンを返します。
そして1年後、フルサイクルを実装する方法を見つけました。
@Nileshsinhメソッドは、登録サイクルを示します。
そして、ログインと更新トークンの部分は次のとおりです。
Route::post('auth/token', 'Api\AuthController@authenticate');
Route::post('auth/refresh', 'Api\AuthController@refreshToken');
方法:
class AuthController extends Controller
{
private $client;
/**
* DefaultController constructor.
*/
public function __construct()
{
$this->client = DB::table('oauth_clients')->where('id', 1)->first();
}
/**
* @param Request $request
* @return mixed
*/
protected function authenticate(Request $request)
{
$request->request->add([
'grant_type' => 'password',
'username' => $request->email,
'password' => $request->password,
'client_id' => $this->client->id,
'client_secret' => $this->client->secret,
'scope' => ''
]);
$proxy = Request::create(
'oauth/token',
'POST'
);
return \Route::dispatch($proxy);
}
/**
* @param Request $request
* @return mixed
*/
protected function refreshToken(Request $request)
{
$request->request->add([
'grant_type' => 'refresh_token',
'refresh_token' => $request->refresh_token,
'client_id' => $this->client->id,
'client_secret' => $this->client->secret,
'scope' => ''
]);
$proxy = Request::create(
'oauth/token',
'POST'
);
return \Route::dispatch($proxy);
}
}