通过API调用从Instagram注销

时间:2015-08-16 13:26:40

标签: java android android-intent instagram

我正在尝试创建一个应用程序,使用意图将图片上传到Instagram。我的问题是一旦上传我想从该帐户注销,以便其他一些用户可以稍后登录。有办法吗?

找到此链接

Instagram Api User Logout

无法理解答案。

1 个答案:

答案 0 :(得分:0)

不幸的是,Instagram API不提供端点,允许用户登出。您引用的答案建议使用带有html页面的拦截网址 - 它将在iframe中加载注销网址并重定向到auth网站。所以你不会真正注销用户 - 他将在auth进程之前注销。

加载页面的Html可以如下:

<html>
  <body>
    <script type="text/javascript">
      function load() {
        window.location.href = "https://YOURS_AUTH_INSTAGRAM_URL";
      }
    </script>

    <iframe src="https://instagram.com/accounts/logout/"" 
    onload="load()"
    width="0" height="0">
    </iframe>
  </body>
</html>