我们正在尝试为我们的应用程序构建一个API服务,这将是一个单页面应用程序,我们遇到了文档中提到的Laravel Passport。我们尝试; Time for LButton to be held down before RButton is sent (in milliseconds)
waitTime := 500
return
~*LButton::
while GetKeyState("LButton", "P")
if (A_TimeSinceThisHotkey > waitTime){
Send, {RButton Down}
KeyWait, LButton
Send, {RButton Up}
}
return
效果很好,但我们的要求是使用oAuth之后从LinkedIn获得的数据生成访问令牌。例如,Password Grant Tokens
,linkedin_id
等。因此,我们不需要email
和username
字段(密码授予令牌所需的字段)。
我们没有看到任何在Laravel文档中生成自定义令牌的方法。有没人试过这个?或者,还有其他选择吗?
答案 0 :(得分:0)
您是否尝试过Laravel Socialite。
在社交网站中,您不需要用户名和密码,只需要client_id
,cliend_secret
和redirect_url
。
'linkedIn' => [
'client_id' => 'your-linkedIn-app-id',
'client_secret' => 'your-linkedIn-app-secret',
'redirect' => 'http://your-callback-url',
],