signpost
signpost copied to clipboard
A light-weight client-side OAuth library for Java
Hi Matthias, we are using hcclient5's ClassicHttpRequest in our project and I needed an OAuth1 lib badly.. The fastest way seemed to be adding support for this in SignPost. I...
Bumps httpclient from 4.5.12 to 4.5.13. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps [junit](https://github.com/junit-team/junit4) from 4.5 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
Empty parameters (needed for RQL) are not added to the baseUrl. With this fix, they are added by overloading the sign method.
Providers can make the requests using GET or POST (some oauth providers, like MySpace, only offer the request_token, authorize_token, access_token urls over GET). Added new set of constructors to every...
I was trying to submit nested parameters (i.e. object[attribute]=value ) and was getting invalid signatures from our OAuth provider. After tracing through the code, I saw that already encoded parameters...
I just add connection.setDoOutput(true); in the createRequest(String url) method and add connection.getOutputStream();in the sendRequest() method. I am doing this because I got a problem when i am using signpost doing...
DefaultOAuthProvider does not honor Authorization header due to Sun's implementation. Which make impossible to set realm.