-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem getting app to be allowed in twitter #1
Comments
Somehow the app manage to appera under my developer account with read write access: t.call( REQUEST( 06-04 12:35:30.435: I/trace(3460): HypTwitter.hx:81: call ::: REQUEST(POST,/1.1/statuses/update.json,null,status=%3E%3EHello%20World%20Twitter%20from%20%23Haxe%20%29) 06-04 12:35:31.300: I/trace(3460): HypTwitter.hx:171: _onLoader_ioError ::: [IOErrorEvent type=ioError bubbles=true cancelable=false text=HTTP status code 403 errorID=403] |
When the project is exported appears a line: after auth on twitter: the last line in logcat is: #ifdef ANDROID
The Java_fr_hyperfiction_HypTwitter_onNewIntent doesn't appear in logcat. Can you share your android manifest ? |
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
The text was updated successfully, but these errors were encountered: