oauth icon indicating copy to clipboard operation
oauth copied to clipboard

OAuth 1.0 implementation in go (golang).

Results 8 oauth issues
Sort by recently updated
recently updated
newest added

Hi. Is there a way to renew an existing access token. The refresh token method doesn't handle scenarios where there is a separate url to renew access token

App Engine requires use of context-specific HTTP clients. Outbound HTTP requests simply don't work unless there's a way to provide the current request context to the outgoing request. Because a...

I was getting signature failures when a query parameter had a properly escaped space. I replaced the existing `escape` method with url.QueryEscape and fixed. Patch below. ``` diff --git a/oauth.go...

hey @mrjones , first of all, thanks for the nice library! i'm trying to re-use it in upwork/golang-upwork project, and i've found an interesting issue: ``` params := make(map[string]string) params["q"]...

Carrying over @deet's comment from https://github.com/mrjones/oauth/pull/9 to a new bug: > I've run into some other issues with using this function and those that return its > result, and I'm...

We are hosting and investing in Gomniauth which can support OAuth1 (but doesn't yet) - and would love your contributions: https://github.com/stretchr/gomniauth

The current `MIT-LICENSE.txt` can not be detected by heuristics of tools like [go-licenses](https://github.com/google/go-licenses/issues/142).

Hi there! This seems to be how the protocol works. Putting "realm" into the consumer AdditionalParams throws the signature off. Thanks for this great software.