2017-08-17 79 views
1

我正在使用Instagram API登錄與Instagram沒有Signup.The問題是,我怎麼可以從Instagram註銷我的網站,並重新回到我的網站回家頁。如果我將此鏈接用作註銷按鈕https://instagram.com/accounts/logout中的href,那麼Instagram將會註銷,但我將如何重定向到我的網站主頁。我也使用Facebook API登錄,並提供我登出的網址,當我點擊它時,它會註銷Facebook帳戶,然後在它之後,它會重定向到我的網站主頁。如何我們可以重新定向回到主頁後註銷與Instagram API

+0

請閱讀[我可以詢問哪些主題](http://stackoverflow.com/help/on-topic) 和[要避免的主題](https://stackoverflow.com/help/dont-ask ) 和[如何提出一個好問題](http://stackoverflow.com/help/how-to-ask) 和[完美的問題](http://codeblog.jonskeet.uk/2010/08/) 29 /撰寫完美問題/) 以及如何創建[最小,完整和可驗證示例](http://stackoverflow.com/help/mcve) 以及[參觀](http:///stackoverflow.com/tour) – RiggsFolly

回答

0

,而不是打開註銷URL,使用JavaScript來添加一個隱藏的iframe與註銷網址:

$(document).append('<div style="display:none"><iframe src="https://instagram.com/accounts/logout/" width="0" height="0"></iframe></div>'); 

這將註銷的Instagram,然後顯示登錄按鈕。

相關問題