We have integration with Twitter that’s been working fine until the June 12th cutoff. The URL we use as a callback looks like: http://example.com/index.php?option=com_jfbconnect&task=authenticate.callback&provider=twitter
When I try to enter that callback into the apps.twitter.com area for my app, everything after the & is truncated, so the callback URL is saved as: http://example.com/index.php?option=com_jfbconnect
Since the full callback URL isn’t saved, we can’t request a token and it falls apart from there.
The query parameters we’re using are fixed. Can you help us understand how to set a callback URL that includes fixed query string parameters?
You should be able to set http://example.com/index.php as your callback url and setting the params at API request time should work.
http://example.com/index.php
Oh man… thanks so much for that help. I tried just the domain and with all the query strings, but never tried just the path.
It works. Much appreciated.