Deeplink solution for IOS and Android apps works in Facebook
Deeplink solution for IOS and Android apps works in Facebook
Deeplink solution for IOS and Android apps works in Facebook
I’ve achieved that creating a template config.xml (the file is config.tpl.xml) and a before_prepare cordova hook to replace the variables in the template with the correct values and save the generated content in config.xml. The cordova hook uses the npm package es6-template-strings: npm install es6-template-strings –save-dev The hook is: #!/usr/bin/env node var fs = require(‘fs’); … Read more
i applied following code and could successfully posted my message on wall. public void postOnWall(String msg) { Log.d(“Tests”, “Testing graph API wall post”); try { String response = mFacebook.request(“me”); Bundle parameters = new Bundle(); parameters.putString(“message”, msg); parameters.putString(“description”, “test test test”); response = mFacebook.request(“me/feed”, parameters, “POST”); Log.d(“Tests”, “got response: ” + response); if (response == null … Read more
If not mistaken, you are using the sdk which just released by Facebook at September 10th, 2015 which named as FacebookSDKs-iOS-20150910.zip. Try to use sdk that released at August 13th, 2015 which named as FacebookSDKs-iOS-20150813.zip and report to Facebook about the duplication problem if you can. Thank you.
Alright, it seems a lot of whining about a simple issue that I still believe my old answer clarifies. Anyway, let me babysit you. 🙂 First: I find out that you cannot really go to the “previous” page from the first page. Ideally, I should. So, here is a bug that I have filed you … Read more
If you’re anything like me your clients won’t want a standard Facebook likebox plugin, they’ll want it all styled and customised their own way. You don’t need to spend all day going round the official documentation wondering if any of it applies to you for something simple like this, it’s quite easy. The confusion arises … Read more
I don’t know if you ever found a solution, but I’m trying to do something similar and I’m still putting the pieces of the puzzle together. I had tried to post this as a comment instead of an answer, as I do not provide a real solution, but it’s too long. Apparently all of the … Read more
Update for Swift 4 and iOS 10+ OK, there are two easy steps to achieve this in Swift 3: First, you have to modify Info.plist to list instagram and facebook with LSApplicationQueriesSchemes. Simply open Info.plist as a Source Code, and paste this: <key>LSApplicationQueriesSchemes</key> <array> <string>instagram</string> <string>fb</string> </array> After that, you can open instagram and facebook … Read more
This problem happens because of the Facebook SDK for iOS. Application Loader forbids the use of the variable “id” from any FBGraphUser related class (maybe others variables too, didn’t test) – e.g. : id<FBGraphUser> friend id<FBGraphUserExtraFields>user Facebook is informed about this problem as of january 2013 : Bug Report The workaround for the moment is … Read more
TL;DR set FB._https to true before calling FB.init. Like so: FB._https = true; FB.init({ /* your app id and stuff */ }); Explanation If you unminify the Facebook JavaScript SDK, you’ll see that its basically an object literal with a bunch of properties. One of these properties is _https, which is a boolean. This property … Read more