We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e5ced commit 6d88b3cCopy full SHA for 6d88b3c
README.md
@@ -29,9 +29,9 @@ $consumerSecret = new Definition\ConsumerSecret('consumer_secret');
29
$requestSigner = new RequestSigner(
30
new Definition\ConsumerKey('consumer_key'),
31
$consumerSecret,
32
- new HmacSha1Signature(/**
33
- $consumerSecret * Optional, but allows for other than HMAC SHA1 signatures
34
- ) */
+ new HmacSha1Signature( // Optional, but allows for other than HMAC SHA1 signatures
+ $consumerSecret
+ )
35
);
36
37
// Pass it a PSR-7 request and it returns a signed PSR7 request you can use in any PSR7 capable HTTP client.
0 commit comments