-
Notifications
You must be signed in to change notification settings - Fork 4
Description
Hello,
When I use var connector = t.connect( _onConnect , _onError , _onAskPin );
to connect to twitter , it redirects me to a webpage to approuve the app.
I click ok, after that, for 0.5 sec the webpage says redirecting back to app then it redirects me to a webpage that cannot be loaded.
In twitter account on apps :No applications have been approved to use your account.
EDIT:
I use:
private var _onError : String->Void;
private var _onAskPin : Void->Void;
private var _onConnect : Void->Void;
then:
t = new HypTwitter( );
t.consumerKey= "vqECwljUP6AxWXRt1pLpTAJsE";
t.consumerSecret= "cCHPUn4yGNsaPO2KW2cq7Tn906K7Kp0fsdUgAEFAFnUZlSEqOr";
var connector = t.connect( _onConnect , _onError , _onAskPin );
Should I define something for _onError, _onConnect?
Thanks