我想在我的項目中實現openid連接。現在我很難編碼發現網址 - 谷歌 - https://accounts.google.com/.well-known/openid-configuration,相同的其他來源,然後進行此調用,並獲得所有各自的來源的端點。 但我想讓它充滿活力。我在openid.net上發現了一些東西如何動態發現端點
GET /.well-known/webfinger
?resource=acct%3Ajoe%40example.com
&rel=http%3A%2F%2Fopenid.net%2Fspecs%2Fconnect%2F1.0%2Fissuer
HTTP/1.1
Host: example.com
HTTP/1.1 200 OK
Content-Type: application/jrd+json
{
"subject": "acct:[email protected]",
"links":
[
{
"rel": "http://openid.net/specs/connect/1.0/issuer",
"href": "https://server.example.com"
}
]
}
我該怎麼做這個調用。我應該放入什麼資源?我是oauth過程的初學者。你可以幫我解決問題嗎?