Error to access facebook with ionic 3

2

Someone can help me with this problem I am trying to connect to your Facebook of the user with Ionic 3 . I have this error

  

Facebook error: SERVER_ERROR: [code] 1675030 [message]: Error when   make the query. [extra]: null

    
asked by Erick Sánchez Chávez 12.10.2018 в 00:37
source

2 answers

3

I managed to fix the hash key Download openssl-0.9.8e_X64 and run

keytool -exportcert -alias androiddebugkey -keystore %HOMEPATH%\.android\debug.keystore | openssl sha1 -binary | openssl base64

I added the password to facebook developers and the problem was solved

    
answered by 12.10.2018 / 19:02
source
0

In the case of those who have MAC to me, I work as follows:

  • cd /Users/<usuario>/.android/ = > cd /Users/saidllamas/.android/
  • keytool -exportcert -alias androiddebugkey -keystore debug.keystore | openssl sha1 -binary | openssl base64
  • Enter password for keystore: android
  • Output = > XXXXXX + bNMXoaXXXXXInKfXXXXX =
  • answered by 14.10.2018 в 22:57