コード例 #1
0
ファイル: RefreshTokenGrant.php プロジェクト: zara-4/php-sdk
 protected function data()
 {
     return array_merge(parent::data(), ["refresh_token" => $this->refreshToken]);
 }
コード例 #2
0
ファイル: PasswordGrant.php プロジェクト: zara-4/php-sdk
 protected function data()
 {
     return array_merge(parent::data(), ["username" => $this->username, "password" => $this->password]);
 }