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 778e617 commit f63ccbcCopy full SHA for f63ccbc
okapi/views/apps/authorize.php
@@ -137,7 +137,10 @@ public static function call()
137
# back to the Consumer application with an error.
138
139
if ($token['callback']) {
140
- return new OkapiRedirectResponse($token['callback'].$callback_concat_char."error=access_denied");
+ return new OkapiRedirectResponse(
141
+ $token['callback'].$callback_concat_char."error=access_denied".
142
+ "&oauth_token=".$token['key']
143
+ );
144
} else {
145
# Consumer did not provide a callback URL (oauth_callback=oob).
146
# We'll have to redirect to the Opencaching main page then...
0 commit comments