disfe.arp
disfe.arp

Reputation: 31

Android + Facebook SDK : "Failed to authenticate the application because of app name mismatch."

While trying to use Facebook SDK on my Android App, I got this error:

"Failed to authenticate the application because of app name mismatch. Please check the application name configured by the dialog."

After reading many posts on this subject, from other people getting the same issue and succeeded in correcting it, it's still impossible for me to get the Facebook SDK working… I suppose there is something wrong between the app configuration on Facebook and my Android project, but I don't understand what.

This is my application configuration on Facebook :

The configuration for Android on Facebook :

And my Android project :

Do you see something wrong ?

Thank you for your help.

Upvotes: 3

Views: 5118

Answers (3)

emedinaa
emedinaa

Reputation: 11

According to documents https://developers.facebook.com/docs/android/share?locale=es_ES

and add

.setApplicationName("Display Name")

Upvotes: 1

Hamish Maclean
Hamish Maclean

Reputation: 21

I had a similar issue. I was using SetApplicationName() in the ShareDialogBuilder to set a name that was different to the facebook Display Name. They must match!

Upvotes: 2

imperator_sp
imperator_sp

Reputation: 1216

Please check name in app(in your manifest file) and name of application on facebook().

Upvotes: 2

Related Questions