Click here to Skip to main content
16,008,299 members

Comments by Member 11124536 (Top 3 by date)

Member 11124536 31-Mar-15 6:12am View    
Deleted
is there any way to do it without statuscallback

this is the way i am trying to solve it


loginButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if(fb.isSessionValid()){

try {}


catch (MalformedURLException e) {e.printStackTrace();}
catch(IOException e){e.printStackTrace();}
}

else{
fb.authorize(Login_home_page.this,new String[]{"email"},new DialogListener() {

@Override
public void onFacebookError(FacebookError e) {
// TODO Auto-generated method stub

}

@Override
public void onError(DialogError e) {
// TODO Auto-generated method stub

}

@Override
public void onComplete(Bundle values) {
// TODO Auto-generated method stub

}

@Override
public void onCancel() {
// TODO Auto-generated method stub

}
});
}


}
});



}


@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);

fb.authorizeCallback(requestCode, resultCode, data);
}
Member 11124536 30-Mar-15 5:59am View    
Deleted
is there any way to do it without statuscallback

this is the way i am trying to solve it


loginButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if(fb.isSessionValid()){

try {}


catch (MalformedURLException e) {e.printStackTrace();}
catch(IOException e){e.printStackTrace();}
}

else{
fb.authorize(Login_home_page.this,new String[]{"email"},new DialogListener() {

@Override
public void onFacebookError(FacebookError e) {
// TODO Auto-generated method stub

}

@Override
public void onError(DialogError e) {
// TODO Auto-generated method stub

}

@Override
public void onComplete(Bundle values) {
// TODO Auto-generated method stub

}

@Override
public void onCancel() {
// TODO Auto-generated method stub

}
});
}


}
});



}


@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);

fb.authorizeCallback(requestCode, resultCode, data);
}
Member 11124536 11-Nov-14 6:05am View    
thankx for the reply bt i already did that and he gave me no info , just a pdf of what to update . but he didnot give me any documentation of the code . now i am looking at hundreds of classes without any knowledge.btw it is android app which i am going to update