且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

是否有可能扩大Facebook的令牌与extendAccessTokenIfNeeded在一个Android应用程序?

更新时间:2023-12-06 16:19:34

我不知道Android开发,但如果您在使用该功能的问题,也许有卷曲在Android的类似的功能,将让你呼叫 https://graph.facebook.com/oauth/access_token?
    CLIENT_ID = APP_ID和放大器;     client_secret = APP_SECRET和放大器;     grant_type = fb_exchange_token和放大器;     fb_exchange_token = EXISTING_ACCESS_TOKEN

I don't know Android development, but if you're having issues with that function, maybe there's a similar function of CURL within Android that will allow you to call https://graph.facebook.com/oauth/access_token?
client_id=APP_ID& client_secret=APP_SECRET& grant_type=fb_exchange_token& fb_exchange_token=EXISTING_ACCESS_TOKEN

(谷歌透露:的http://thesoftwarerogue.blogspot.com/2010/05/porting-of-libcurl-to-android-os-using.html如何从Android的CURL)

(google revealed: http://thesoftwarerogue.blogspot.com/2010/05/porting-of-libcurl-to-android-os-using.html on how to CURL from Android)