Facebook acc which using yahoo can't login to android app -
in application, can't login yahoo facebook account(such xxxxx@yahoo.com).another mails(such xxxx@gmail.com) avaliable. when login button clicked,it goes facebook login page .after fill mail , password, can't go page... don't know, going on? here code facts , put page....
private class idrequestlistener implements requestlistener { @override public void oncomplete(string response, object state) { log.d("profile", response); string json = response; final string email; try { jsonobject profile = new jsonobject(json); final string name = profile.getstring("name"); if( profile.getstring("email").equals("")|| profile.getstring("email").equals(null)){ email = ""; }else{ email = profile.getstring("email"); } final string birth_day=profile.getstring("birthday"); final string gender=profile.getstring("gender"); intent = new intent(getapplicationcontext(), main.class); i.putextra("status", "facebook"); i.putextra("name", name); i.putextra("email", email); i.putextra("birthday", birth_day); i.putextra("gender", gender); startactivity(i); runonuithread(new runnable() { @override public void run() { toast.maketext(getapplicationcontext(), "name: " + name + "\nemail: " + email+ "birthday"+birth_day + "gender"+gender, toast.length_long).show(); } }); } catch (jsonexception e) { e.printstacktrace(); } }
edit: warning got:
03-24 06:43:57.445: w/com.facebook.session(2305): should not pass read permission (email) request publish or manage authorization 03-24 06:43:57.445: w/com.facebook.session(2305): should not pass read permission (user_birthday) request publish or manage authorization
edit: logcat output..
03-25 11:06:13.165: i/response(10980): {"work":[{"employer":{"id":"114476035259287","name":"not yet :)"}}],"birthday":"04\/01\/1990","locale":"en_us","link":"https:\/\/www.facebook.com\/thin.thaw","education":[{"type":"high school","year":{"id":"143018465715205","name":"2000"},"school":{"id":"114941651860886","name":"yes"}},{"type":"college","concentration":[{"id":"433384503391953","name":"pyay technology university"}],"school":{"id":"108061192547400","name":"pyay technological university"}}],"updated_time":"2013-03-15t11:58:43+0000","id":"100003374513765","first_name":"thin","username":"thin.thaw","timezone":6.5,"verified":true,"name":"thin thaw","last_name":"thaw","gender":"female"}
Comments
Post a Comment