- fixed return parameter in authorization page (RFC compliance)
- fixed deprecated function calls in several places
View Justin Richer's plugins
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
Hi,
I appreciate your help, but still not working, oauth_callback_confirmed isn't included in Request Token provider's response as needed. Looked into the code I found this:
// Build the new url
$newUrl = substr_replace($url, $separator . 'oauth_verifier=' . $tokEnt->verifier . '&oauth_token=' . $tokEnt->requestToken . '&oauth_callback_confirmed=true', $insertPosition, 0);
But it's on actions/authorize.php. Where can I add a similar setence for the attribute to be included in request negotiation?
Thanks in advance!
Yes, you're right, I added it to the wrong part of the protocol negotiation. I'll update things and get back a new revision shortly. Thanks for your patience!
Added:
echo $token . '&oauth_callback_confirmed=true';
in pages/requesttoken.php
Yes -- I apparently forgot to upload the plugin. New version (0.10.5) should be up for 1.8 now, please try it out and see if it fixes your issue.