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 5fbdc02 commit 9609102Copy full SHA for 9609102
src/DataService/OAuth2Client.php
@@ -80,6 +80,7 @@ public function migrateOAuth1ToOAuth2(
80
string $consumer_secret,
81
string $access_token,
82
string $access_token_secret,
83
+ string $redirect_uri,
84
string $environment
85
): OAuth2AccessToken
86
{
@@ -92,7 +93,7 @@ public function migrateOAuth1ToOAuth2(
92
93
$access_token,
94
$access_token_secret,
95
'com.intuit.quickbooks.accounting',
- null,
96
+ $redirect_uri,
97
$environment
98
);
99
}
src/DataService/OAuth2ClientInterface.php
@@ -27,6 +27,7 @@ public function migrateOAuth1ToOAuth2(
27
28
29
30
31
32
): OAuth2AccessToken;
33
0 commit comments