简体   繁体   中英

facebook ios url scheme for swift4

Does anyone know the scheme of facebook for swift4?
I have tried many ways and also these:

fb://profile/\(Username)! ,  
fb://profile?id=[username|user_id] , 

but redirects me to the wall of my facebook page

Ok guys i solved it using find my facebook id: https://findmyfbid.com and replace the companyName with id for the appURL

let appURL = NSURL(string: "fb://profile/1381815961922424")!

First you should create app in facebook developers then get the app id and in info.plist replace YYYYYYYYYYYYYY with id of your app

<key>CFBundleURLTypes</key>
    <array>
        <dict>
            <key>CFBundleURLSchemes</key>
            <array>
                <string>fbYYYYYYYYYYYYYY</string>

            </array>
        </dict>
    </array>

I could only redirect to user profile using facebook user id. So the URL like http://facebook.com/816657065103305 goes to user profile

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM