Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/facebook/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Facebook是否使用OAuth来使用他们的API_Facebook_Twitter_Oauth_Oauth 2.0 - Fatal编程技术网

Facebook是否使用OAuth来使用他们的API

Facebook是否使用OAuth来使用他们的API,facebook,twitter,oauth,oauth-2.0,Facebook,Twitter,Oauth,Oauth 2.0,我目前正在对OAuth进行一些研究,我想知道OAuth2提供商,如Facebook、Google、Twitter等是否。。。通过OAuth验证他们自己的用户,或者他们是否使用OAuth进行第三方应用程序授权。我确信他们使用内部的OAuth2系统 更好的理解方式是查看google产品。如果您登录一个产品,如mail,则url为https://mail.google.com/mail/u/1/#inbox-您将立即重定向到他们的oauth系统-类似https://accounts.google.co

我目前正在对OAuth进行一些研究,我想知道OAuth2提供商,如Facebook、Google、Twitter等是否。。。通过OAuth验证他们自己的用户,或者他们是否使用OAuth进行第三方应用程序授权。

我确信他们使用内部的
OAuth2
系统

更好的理解方式是查看
google
产品。如果您登录一个产品,如
mail
,则url为
https://mail.google.com/mail/u/1/#inbox
-您将立即重定向到他们的
oauth
系统-类似
https://accounts.google.com/signin/v2/identifier?
-用于身份验证。之后,您可以访问他们的任何产品,无论是
drive
docs
还是
youtube
,只要您已经通过了身份验证


此外,当您通过google登录时,您也会注意到类似的
oauth系统。唯一的区别是它将有限的资源返还给第三方应用。

谢谢您,先生