You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I changed it to use the decode method and it worked fine
protected function getRequestTokenCompleteHandler(event:SoundcloudEvent):void
var responseVariables:URLVariables=new URLVariables();
var str:String=new String(event.data);
responseVariables.decode(str)
requestToken=createTokenFromURLVariables(responseVariables);
The text was updated successfully, but these errors were encountered:
the existing code threw a type conversion error for me
//var responseVariables:URLVariables = URLVariables(event.data);
I changed it to use the decode method and it worked fine
protected function getRequestTokenCompleteHandler(event:SoundcloudEvent):void
var responseVariables:URLVariables=new URLVariables();
var str:String=new String(event.data);
responseVariables.decode(str)
requestToken=createTokenFromURLVariables(responseVariables);
The text was updated successfully, but these errors were encountered: