I have an Activity that should handle results from both the Facebook SDK, and from other custom Activities.
Where can I find the requestCodes used by the Facebook SDK, in order to not use the same for my Activities?
I should be able to tell them apart in the onActivityResult
using their requestCode so they need to be unique.
The CallbackManager manages the callbacks into the FacebookSdk from an Activity's or Fragment's onActivityResult() method. Nested Class Summary. Modifier and Type. Class.
Pass the request code in the sdkInitialize
call
FacebookSdk.sdkInitialize(context, 1200);
Then
public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (FacebookSdk.isFacebookRequestCode(requestCode)) { //Facebook activity result //Do your stuff here //Further you can also check if it's login or Share etc by using //CallbackManagerImpl as explained by rajath's answer here if (requestCode == CallbackManagerImpl.RequestCodeOffset.Login.toRequestCode()) { //login } else if (requestCode == CallbackManagerImpl.RequestCodeOffset.Share.toRequestCode()){ //share } }
From the docs
isFacebookRequestCode(int)
Returns true if the request code is within the range used by Facebook SDK requests. This does not include request codes that you explicitly set on the dialogs, buttons or LoginManager. The range of request codes that the SDK uses starts at the callbackRequestCodeOffset and continues for the next 100 values.
sdkInitialize(Context, int)
This function initializes the Facebook SDK, the behavior of Facebook SDK functions are undetermined if this function is not called. It should be called as early as possible.
public static synchronized void sdkInitialize(Context applicationContext, int callbackRequestCodeOffset)
applicationContext
The application contextcallbackRequestCodeOffset
The request code offset that Facebook activities will be called with. Please do not use the range between the value you set and another 100 entries after it in your other requests.
Go to CallbackManagerImpl.RequestCodeOffset. I personally used a piece of code like this to prevent unwanted behaviour.
if (requestCode == CallbackManagerImpl.RequestCodeOffset.Login.toRequestCode()) { callbackManager.onActivityResult(requestCode, resultCode, data); }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With