IOS Error loading storage application with facebook integration

I have a built-in facebook function in my application for uploading images to facebook. I created an application identifier and completed everything. I can upload my image to facebook page.

But when I upload my application to the store, I had problems

The following URL patterns found in your application are not in the correct format: [fb 464863668026]. URL schemes must begin with an alphabetic character and consist of alphanumeric characters, only a period, hyphen or plus sign. See RFC1738 for details.

Does anyone have an idea what the error is for. Any help would be greatly appreciated.

+5
source share
5 answers

Go to Target> select projectName> Select "info"> select url Type> select add (+), write your package identifier, which you write in the fb settings, and specify the URL scheme fb464863668026.

now thats ok

+4
source

Go to Target-> ProjectName → Preprocessor Definitions Info.plist → FB_URL = fb464863668026 and add FB_URL in the URL scheme element plist [0].

thank

+2
source

<Project>-Info.plist

FacebookAppID URLTypes, -

info plist screenshot

+2

.

, , - .

+1

Your URL_SCHEMES must have a space. Check all URL types in info.plist and remove any spaces found in any URL. This fixed this issue for me.

0
source

All Articles