我使用Instagram API登录Instagram而不注册。问题是我如何从我的网站登出Instagram并重定向回我的网站主页。如果我将这个链接用作注销按钮https://instagram.com/accounts/logout中的href,那么Instagram将被注销,但我将如何重定向回我的网站主页。我也使用Facebook API进行登录,并提供我的注销URL,当我点击它然后它会注销Facebook帐户然后在此之后,它会重定向回我的网站主页。
答案 0 :(得分:0)
而不是打开注销网址,使用javascript附加带有注销网址的隐藏iframe:
export class MyClass
{
public item1: string;
public item2: string;
}
let myArray = MyClass[];
myArray.push({ item1: 'foo1', item2: 'bar1'})
myArray.push({ item1: 'foo2', item2: 'bar2'})
Observable.of(myArray)
.map(data => data.item1)
.subscrite(data => <<here there should be a list of strings here: ['foo1', 'foo2']>>)
这将注销instagram然后显示登录按钮。