HMACSHA1 oauth_signature in java

2.1k Views Asked by At

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?

1

There are 1 best solutions below

6
Marcel Dias On

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