login with facebook

This commit is contained in:
2021-03-10 18:10:16 +07:00
parent 590adf5662
commit 7933898f57
8 changed files with 178 additions and 33 deletions

View File

@@ -42,6 +42,7 @@
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<!-- Put me in the [my_project]/ios/Runner/Info.plist file -->
<!-- Google Sign-in Section -->
<key>CFBundleURLTypes</key>
<array>
@@ -50,13 +51,49 @@
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<!-- TODO Replace this value: -->
<!-- Copied from GoogleService-Info.plist key REVERSED_CLIENT_ID -->
<string>com.googleusercontent.apps.184261582386-t5mokji6qo3l77kf3m269onvelou1114</string>
<string>1051330489903-on15f3rmq3a1830f2cb3d7ber0duueqh.apps.googleusercontent.com</string>
</array>
</dict>
</array>
<!-- End of the Google Sign-in Section -->
<!-- Start key facebook -->
<key>CFBundleURLTypes</key>
<array>
<!--
<dict>
... Some other CFBundleURLTypes definition.
</dict>
-->
<dict>
<key>CFBundleURLSchemes</key>
<array>
<!--
Replace "000000000000" with your Facebook App ID here.
**NOTE**: The scheme needs to start with `fb` and then your ID.
-->
<string>fb2553407474960753</string>
</array>
</dict>
</array>
<key>FacebookAppID</key>
<!-- Replace "000000000000" with your Facebook App ID here. -->
<string>2553407474960753</string>
<key>FacebookDisplayName</key>
<!-- Replace "YOUR_APP_NAME" with your Facebook App name. -->
<string>YOUR_APP_NAME</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbapi</string>
<string>fb-messenger-share-api</string>
<string>fbauth2</string>
<string>fbshareextension</string>
</array>
<!-- End key facebook -->
</dict>
</plist>