I am implementing OAUTH in android using appcelerator. login page is redirecting to response page with token appended to query string e.g. http://mysite.com?access_token=“token”
So I need to fetch this query string using appcelerator.
I have used Ti.App.getArguments()
but this api is only working for ios not for android.
Is there any api available for fetching query string in appcelerator that works in android??
Add an event listener to the webview like so:
The variable urlParams will contain a string that looks like
param1=value1¶m2=value2so from there you just need to split them up and find theaccess_tokenparam.