我正在创建一个标签式iOS应用程序。我需要其中一个选项卡页面仅显示特定用户(不是登录用户)的IG提要。我该怎么做?
Edited:
好的,现在我通过IG Developer页面注册了我的应用程序,并且我已经获得了我的客户端ID。现在我需要在我的Web视图中加载用户的配置文件。
以下是我的 InstaViewController.m 文件中的代码:
- (void)viewDidLoad
{
[super viewDidLoad];
UIActivityIndicatorView *activityView=[[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
activityView.center=self.view.center;
[activityView startAnimating];
[self.view addSubview:activityView];
// Do any additional setup after loading the view.
NSURL *instagramURL = [NSURL URLWithString:@"instagram://user?username=MAMA_MIA"];
if ([[UIApplication sharedApplication] canOpenURL:instagramURL]) {
[[UIApplication sharedApplication] openURL:instagramURL];
}
}
答案 0 :(得分:2)
使用Instagram API中的以下URI,如果您知道其用户ID,则可以获取任何用户提要。
https://api.instagram.com/v1/users/{USER_ID}/media/recent/?client_id={CLIENT_ID}