oauth1-client
oauth1-client copied to clipboard
OAuth 1 Client
This adds a `.gitattributes` file to exclude tests and other unnecessary files from production releases. It looks like this was added as part of https://github.com/thephpleague/oauth1-client/pull/126, but then subsequently removed? 🤔
The Magento provider is throwing errors for me when I attempt to use it with version 2.4.6 The error is `HTTP 400: Signature method HMAC-SHA1 is not supported` From looking...
Background/Context: I'm creating a simple php script that uses curl to retrieve info from a remote WooCommerce site via the API as a proof of concept. Issue: I'm not seeing...
When working with [Socialite](https://github.com/laravel/socialite) I noticed the callback URL for Twitter was wrong, at least for me. This PR aims to fix that. I read your contributing guide but failed...
# Problem When duplicate params are passed (like ['test' => [ '123', '456' ]]), the signature should not add numeric indices to the generated base string. The default behavior of...
https://github.com/thephpleague/oauth1-client/blob/master/src/Client/Server/Server.php#L150 I extended Server for a different provider (SocialFlow.php file below), and after the auth redirect, I am given an OAuth_token, which I store in $_SESSION. I also serialize and...
Is someone getting this error?
Fixes #142
https://github.com/thephpleague/oauth1-client/commit/0a423aa9a3c7d1c7a8f3befd38acfff2ad972803#diff-23c1737a2e9df0d80059154c9a7878c3d6e59fd5bb93ad1966c2f01293a5398cR19 SignatureInterface is located in another directory and it should be imported like: ```php use League\OAuth1\Client\Signature\SignatureInterface; ```
Calling the class with parameter `name` don't seems to apply it to Trello. ```php $Trello = new Trello([ 'identifier' => c('TRELLO_KEY'), 'secret' => c('TRELLO_SECRET'), 'callback_uri' => Http::url(), 'name' => c('APP_NAME'),...