IOS where to put the configuration of facebook sdk
Posted
by
Carol Smith
on Stack Overflow
See other posts from Stack Overflow
or by Carol Smith
Published on 2014-06-07T09:20:37Z
Indexed on
2014/06/07
9:24 UTC
Read the original article
Hit count: 314
I am trying to integrated my IOS 7 application with Facebook SDK>
I following this official tutorial https://developers.facebook.com/docs/ios/getting-started
which states
Configure the .plist
Follow these three steps:
Create a key called FacebookAppID with a string value, and add the app ID there.
Create a key called FacebookDisplayName with a string value, and add the Display Name you configured in the App Dashboard.
Create an array key called URL types with a single array sub-item called URL Schemes. Give this a single item with your app ID prefixed with fb. This is used to ensure the application will receive the callback URL of the web-based OAuth flow.
The finished .plist should look something like this:
My question is where to put these values?
They already put this image, maybe it helps you to answer me
Edit
The problem that I don't have any plist file in my framework in xcode and I can't add a new one because if i did, I would have to add all the variables that you see in the image but the tutorial just stated about some of them
© Stack Overflow or respective owner