Reputation: 3931
Is It possible to generate HMACSHA1
oauth_signature in java without using OAuthConsumer
of signpost
library, so it can be easily implemented with other languages like objective-c
etc?
Upvotes: 0
Views: 2182
Reputation: 4521
Yes, since HMACSHA1
is a standard you can write your own implementation.
This is a gist with an example
Here a gist with Objective-c example
Upvotes: 2