c# – 获取Facebook TOKEN的客户凭证

前端之家收集整理的这篇文章主要介绍了c# – 获取Facebook TOKEN的客户凭证前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
页面不解释我们必须使用哪些客户端凭据.

https://developers.facebook.com/docs/authentication/applications/

https://graph.facebook.com/oauth/access_token?
    client_id=YOUR_APP_ID
   &client_secret=YOUR_APP_SECRET
   &grant_type=client_credentials

有什么想法是什么?

https://developers.facebook.com/docs/authentication/permissions/也有意义吗?

谢谢!

解决方法

grant_type=client_credentials

只是您应该在请求中使用的硬编码字符串.您只需要将应用程序的id / secret插入该字符串即可.

原文链接:https://www.f2er.com/csharp/97117.html

猜你在找的C#相关文章