crino / instagram-ios-sdk

Instagram SDK for iOS
http://www.followgram.me
228 stars 63 forks source link

How to like #12

Closed Liron-K closed 11 years ago

Liron-K commented 11 years ago

How can I use your sdk to post a like on a photo?

Thanks, L

EDIT: Figured it out ` -(void)likeImage:(NSString)imageId { NSString methodName = [NSString stringWithFormat:@"media/%@/likes", imageId]; NSMutableDictionary* params = [[NSMutableDictionary alloc] init]; [m_Instagram requestWithMethodName:methodName params:params httpMethod:@"POST" delegate:self]; }

-(void)unlikeImage:(NSString)imageId { NSString methodName = [NSString stringWithFormat:@"media/%@/likes", imageId]; NSMutableDictionary* params = [[NSMutableDictionary alloc] init]; [m_Instagram requestWithMethodName:methodName params:params httpMethod:@"DELETE" delegate:self]; } `

crino commented 11 years ago

hi, sorry for late reply. anyway, yes, that's the solution ;)