Shahab Rauf
Shahab Rauf

Reputation: 3931

HMACSHA1 oauth_signature in java

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

Answers (1)

Marcel Dias
Marcel Dias

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

Related Questions