Hello,
I need a facebook code thereby people can post and comment on users wall.
I looked at facebook developers but thats not in lua, its all XML codes.
But I need that in lua and so does anyone know how?
Thanks
Hello,
I need a facebook code thereby people can post and comment on users wall.
I looked at facebook developers but thats not in lua, its all XML codes.
But I need that in lua and so does anyone know how?
Thanks
Have you looked at the Facebook Sample app?
Hi Rob, I have integrated the Facebook code in my app, I have used my app id in build.settings, but no use, don’t know why it is not calling. what else I need to get it work? I am using build num 1054
Hi there,
There are two places you need to include your facebook app ID in your build.settings. Can you paste in your build.settings, so we can make sure you have it right in both places?
can you post your build.settings?
Have you looked at the Facebook Sample app?
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
settings = {
orientation = {
default = “portrait”,
supported = { “portrait”, }
},
iphone = {
components = {},
plist = {
CFBundleIdentifier = “com.XXXXX.XXXXXXXXXX”,
UIStatusBarHidden = false,
UIPrerenderedIcon = true, – set to false for “shine” overlay
UIApplicationExitsOnSuspend = false, – uncomment to quit app on suspend
FacebookAppID = “XXXXXXXXXXXXX”,
– iOS app URL schemes:
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fbXXXXXXXXXXXX”, – example scheme for facebook
}
}
}
}
},
--[[
– Android permissions
androidPermissions = {
“android.permission.INTERNET”,
},
]]–
}
now I am Getting The Operation could not be completed error(com.facebook.sdk error 5). Whats the issue, Please help me.
Hi there,
Your build.settings look fine to me. How are you calling the facebook.login() and facebook.request() functions? Did you follow one of the guides to set up your app in the facebook developer portal? Also, when do you receive that error – when calling facebook.login(), or when calling facebook.request()?
I’m assuming the XXXXXXXXX are real ID’s not literal XXXXXXXXXX’s?
Hi Rob, I have integrated the Facebook code in my app, I have used my app id in build.settings, but no use, don’t know why it is not calling. what else I need to get it work? I am using build num 1054
Hi there,
There are two places you need to include your facebook app ID in your build.settings. Can you paste in your build.settings, so we can make sure you have it right in both places?
can you post your build.settings?
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
settings = {
orientation = {
default = “portrait”,
supported = { “portrait”, }
},
iphone = {
components = {},
plist = {
CFBundleIdentifier = “com.XXXXX.XXXXXXXXXX”,
UIStatusBarHidden = false,
UIPrerenderedIcon = true, – set to false for “shine” overlay
UIApplicationExitsOnSuspend = false, – uncomment to quit app on suspend
FacebookAppID = “XXXXXXXXXXXXX”,
– iOS app URL schemes:
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fbXXXXXXXXXXXX”, – example scheme for facebook
}
}
}
}
},
--[[
– Android permissions
androidPermissions = {
“android.permission.INTERNET”,
},
]]–
}
now I am Getting The Operation could not be completed error(com.facebook.sdk error 5). Whats the issue, Please help me.
Hi there,
Your build.settings look fine to me. How are you calling the facebook.login() and facebook.request() functions? Did you follow one of the guides to set up your app in the facebook developer portal? Also, when do you receive that error – when calling facebook.login(), or when calling facebook.request()?
I’m assuming the XXXXXXXXX are real ID’s not literal XXXXXXXXXX’s?