我尝试过任何事情,但我无法跟踪用户。我正在通过移动设备提出此请求:
https://api.instagram.com/v1/users/29440194/relationship?access_token=myValideToken&action=follow
我不断获得状态:
{"meta":{"code":200},"data":{"outgoing_status":"none","target_user_is_private":false,"incoming_status":"none"}}
我必须将传出状态设为:requested
:
我可以看到他们的api,你不能从客户端发出请求,这是我无法理解的。我们有一个iPhone应用程序必须发出该帖子请求,还有另一种方法吗?
我们设法使用相同的令牌,即用户的时间线。
编辑: 我们还将usee令牌的范围设置为具有"关系",但我们只是一次又一次地得到相同的响应。只是无法跟随任何人,并且没有他们的支持。
//ios
NSString *follow=[NSString stringWithFormat:@"https://api.instagram.com/v1/users/%@/relationship?access_token=%@&action=follow",userID, token];
NSLog(@"%@",follow);
NSURL *url = [NSURL URLWithString:follow];
NSData *data = [NSData dataWithContentsOfURL:url];
NSString *ret = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"answer=%@", ret);
答案 0 :(得分:0)
我已经设法解决它:
NSString *initialURL = [NSString stringWithFormat:@"https://api.instagram.com/v1/users/%@/relationship?access_token=%@",userID,token];
NSURL *url=[NSURL URLWithString:initialURL];
NSString *key = [NSString stringWithFormat:@"action=follow"];
NSData *mastData = [key dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:YES];
NSString *mastLength = [NSString stringWithFormat:@"%lu",(unsigned long)[mastData length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init] ;
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:mastLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:mastData];
NSURLConnection *con=[[NSURLConnection alloc]initWithRequest:request delegate:self];
[con start];
我无法弄清楚为什么Instagram不会让您知道您必须在请求值中添加操作。