How to get supplier email contacts with iPhone os?

I integrated gigya into the iPhone to enter the target. It works great. Now I need to get the login email user contacts. How to do it on iPhone programmatically?

+3
source share
1 answer

I finally got it

[gsAPI sendRequest:@"socialize.getContacts" params:nil useHTTPS:YES delegate:self context:nil];

}

- (void) gsDidReceiveResponse:(NSString*)method response:(GSResponse*)response context:(id)context
{ 
NSString *resMsg = [NSString stringWithFormat:@"\n errorCode=%d\n errorMessage=%@\n response.data=%@\n",   
                    response.errorCode, response.errorMessage, [response.data stringValue]];  
  NSLog(@"gsDidReceiveResponse:\nMethod=%@\nResponse=%@\n context=%@",method,resMsg,context);
}
+1
source

All Articles