oauthconsumer
oauthconsumer copied to clipboard
An iPhone ready, Objective-C implementation of an OAuth consumer.
This is happening in the "OAMutableURLRequest.m" file calling: (void)_generateTimestamp { timestamp = [[NSString stringWithFormat:@"%ld", time(NULL)] retain]; } The 'time' variable doesn't know if it should link to the sys/time or...
Hi, Would you please pull this commit? I'm just adding an import to UIKit so that this can compile. Thanks.
I made the normalize function static to appease xcode. `oauthconsumer/OAMutableURLRequest.m (141): warning: Semantic Issue: No previous prototype for function 'normalize'`
cast time result to (unsigned int)
To make easy the integration in thirdparty project. Easiest as download the Xcode project, build it and drag&drop the generated framewrok to your project (ARC or not)
Needs to be recompiled for XCode 4.5/iPhone 5
Put any Unicode string in OAMutableURLRequest httpbody data,the library will crash in this function call. NSArray *parameters = [self parameters] in the following code. - (NSString *)_signatureBaseString { // OAuth...
If I add oauthconsumer a project to get errors in NSZone NSObject what could be the problem ???
Hi, just updated to the latest code version of oauthconsumer, I still face an issue with under iOS 5. I'm using your cool package to interface with Photobucket. I released...
Hello you have options to set extra params (- (void)setParameters:(NSArray *)parameters), but you read it only in - (NSString *)_signatureBaseString you need add in OAMutableURLRequest.m in - (void)prepare that code...