从 Facebook 注销
嗯,我正在开发一个 Flex 桌面应用程序,但我无法从 Facebook 注销。我的意思是在登录并更新我想要更新的照片后,我运行注销方法,如下所示
FacebookDesktop.logout(handleLogout);
其中handleLogout是一个我可以做其他事情的函数。
该方法运行但从未注销。我认为也许加载另一个我可以注销的请求,并且我发现使用:
“https://www.facebook.com/logout.php?” + info.get_accessToken() + “&next=http://www.Google.com”
会注销,但我不知道在哪里可以获得 accesToken。
提前致谢!
Well i developing a Flex desktop app and i cant logout form facebook. I mean after loggin in and updating the photo i want to update, i run the method to log out, which looks like this
FacebookDesktop.logout(handleLogout);
Where handleLogout is a function where i can do other things.
The method runs but never log out. I think that maybe loading an other request i could log out, and i find that using:
"https://www.facebook.com/logout.php?" + info.get_accessToken() +
"&next=http://www.Google.com"
would log out, but i dont know where i ca get the accesToken.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下代码是使用 C# 代码在 asp.net 页面中实现的。
说明
首先,您需要发送请求来验证用户身份(IF 部分)。成功验证后您将获得一个“代码”。然后使用此代码发送请求以授权应用程序。授权成功后,您将获得访问令牌作为响应。
流程如下
的字符串
您将收到格式为access_token=ACCESS_TOKEN_VALUE&expires=EXPIRY_TIME
作为响应。
尝试使用 flex 发送 POST 请求
The following code is implemented in for asp.net page using C# code.
EXPLANATION
First you need to send a request to authenticate the user(the IF part). You will get a "CODE" on successfull authentication. Then send a request with this code to authorize the application. On successful authorization you will get the access token as response.
HERE IS THE PROCEDURE
You will get a string in the format
access_token=ACCESS_TOKEN_VALUE&expires=EXPIRY_TIME
as response.
Try this to send a POST request using flex