Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Profile Information #59

Closed
obaidjawad opened this issue Jan 5, 2014 · 5 comments
Closed

Profile Information #59

obaidjawad opened this issue Jan 5, 2014 · 5 comments
Assignees

Comments

@obaidjawad
Copy link

Dear, I have checked the issues posted by other users but I'm amazed that no one asked about fetching the profile information like facebook sdk

Can I know what is the method that I need to use to fetch the profile information of twitter account through which i have logged along with its profile image?

@obaidjawad
Copy link
Author

Hi I tried to fetch the profile image using this block method

  [_twitter getUsersShowForUserID:nil orScreenName:username_twitter includeEntities:nil successBlock:^(NSDictionary *user){
           NSLog(@"%@",[user valueForKey:@"profile_image_url"]);
        }errorBlock:^(NSError *error) {
            NSLog(@"%@",[error localizedDescription]);
        }];

But the app crashes when I use it

Crash log:
-[TWRequest preparedURLRequest]: unrecognized selector sent to instance 0xaa382f0
2014-01-05 12:22:19.449 360SA[3165:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[TWRequest preparedURLRequest]: unrecognized selector sent to instance 0xaa382f0'
*** First throw call stack:
(0x2be8012 0x2286e7e 0x2c734bd 0x2bd7bbc 0x2bd794e 0x1aab04 0x1ac6dd 0x155946 0x1574bb 0x1774ab 0x3ccd7 0x154ced 0x1aa3a2 0x1cf175a 0x1cbf453 0x1cbf164 0x1d4ba31 0x23f953f 0x240b014 0x23fb7d5 0x2b8eaf5 0x2b8df44 0x2b8de1b 0x2ed37e3 0x2ed3668 0x11caffc 0x26bd 0x25e5 0x1)
libc++abi.dylib: terminate called throwing an exception

@obaidjawad
Copy link
Author

I figured it out and that is because the method is compatible with iOS 6.0+ and it doesn't work for iOS 5
Could you please make it compatible with iOS 5?

@nst
Copy link
Owner

nst commented Jan 5, 2014

Thank you for reporting this!

I cannot test on iOS 5 right now.

Please let me know it this commit does fix the issue.

3d5cb4d

@ghost ghost assigned nst Jan 5, 2014
@marcusthornton
Copy link

Just ran across this issue my self, so glad there was already a response as was scratching my head.. not wanting to dig in.
Ok testing running ios 7 executes the TW code, which does not give a result at all..

flipping the > than sign in these two places ran the right code block, and yup code worked (ie followed someone on twitter) ... except none of the call back blocks worked (success or error)

#if (TARGET_OS_IPHONE) && (__IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_6_0)
TWRequestMethod method = (httpMethod == 0) ? TWRequestMethodGET : TWRequestMethodPOST;
request = [[TWRequest alloc] initWithURL:url parameters:paramsWithoutMedia requestMethod:method];
#else
request = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:httpMethod URL:url parameters:paramsWithoutMedia];
#endif

[request setAccount:self.account];

if(mediaData) {
    [request addMultipartData:mediaData withName:@"media[]" type:@"application/octet-stream" filename:@"media.jpg"];
}

self.completionBlock = completionBlock;
self.errorBlock = errorBlock;

// we use NSURLConnection because SLRequest doesn't play well with the streaming API

NSURLRequest *preparedURLRequest = nil;

#if TARGET_OS_IPHONE && (__IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_6_0)
preparedURLRequest = [request signedURLRequest];
#else
preparedURLRequest = [request preparedURLRequest];
#endif

@obaidjawad
Copy link
Author

Thank you @nst - Perfect it works like charm now! with version iOS 5 and later versions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants