gpt4 book ai didi

ios - 来自 native 应用程序的 Instagram API OAuth

转载 作者:可可西里 更新时间:2023-11-01 04:43:58 24 4
gpt4 key购买 nike

目前,我通过以下方式请求 Instagram 的 OAuth 来获取访问 token :

//Create OAuth
NSString *oAuthURL = [NSString stringWithFormat:@"https://api.instagram.com/oauth/authorize/?client_id=%@&redirect_uri=%@&response_type=token", instagramID, instagramRedirectUri];

self.authWebView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 64.0f, self.view.frame.size.width, self.view.frame.size.height)];
NSURL *url = [NSURL URLWithString:oAuthURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[self.authWebView loadRequest:requestObj];
self.authWebView.delegate = self;
[self.view addSubview:self.authWebView];

但是,我希望能够将原生 Instagram 应用程序(如果可用)启动到类似于 facebook 应用程序的单点登录。这可能吗?如果 Instagram 应用仅请求许可并且用户按下 ok 而不是填写他们的凭据,那就太酷了。

谢谢。

最佳答案

遗憾的是,Instagram 目前对此没有任何支持。这是应用程序本身需要支持的东西。

关于ios - 来自 native 应用程序的 Instagram API OAuth,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24668383/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com