I was doing FB and Twitter integration of my application using the ShareKit. Which seems to be an awesome framework which reduces the development time a lot. However there seems to be lots of bugs/issues on the framework and looking on to that I discovered that there's a separate version maintained by the Open source community which is called ShareKit 2.0.
It available thorough the git repo and I download the framework as a ZIP bundle. But I can't compile this bundle the culprit seems to be it lacks FBConnect and JSON Kit files. AnyIdea why they haven't included these files ? / Will any version of FB would work with the latest Sharekit Framework?
Reading the installation wiki it looks like ShareKit includes it's dependencies as git submodules.
Since you are just downloading the zipped archive - this does not include these submodules, nor does it contain the information required to download them.
Your best bet is not to use the zipped archive, but to install it through git as the documentation says. Alternatively, you can download these dependencies yourself and add them to your project.
Don't bother with ShareKit, you'll encounter too many problems and their code will be out-of-date very quickly. use Facebook's mobile api for Facebook. HA!
https://github.com/facebook/facebook-ios-sdk
Related
Arcanist is a part of code review tool of Phabricator. For some reasons, our developers don't like use commands to push code. Is that way to integrate ecplise(J2EE) and arcanist?
Unfortunately there is no official plugin to integrate arcanist or any other phabricator application data into eclipse yet.
But feel free to create a feature request :)
We have been using the Grails Facebook-graph plugin for a while now - it has been working perfectly until earlier this month when FB apparently turned off their old authentication scheme, and indirectly forced everybody to use oauth2 instead.
This post from FB https://developers.facebook.com/blog/post/525/ describes the changes, and the issue in the Grails plugin seems to be that it does not comply with the new standard.
The main issue appears to be in the way the active user data is being maintained in the plugin. This is currently based on the FB provided cookie "fbs", which contains all the necessary session data related to the active user. Unfortunately, this is no longer provided by FB (apparently replaced by a "fbsr" cookie instead).
I have searched the FB documentation, and in various forums for details on how to upgrade the plugin, but unfortunately without luck.
Can anyone help with a hint or two on what steps should be performed in order to get the plugin updated?
EDIT: I think the updated version of the plugin (0.14) has been pushed the public repository. You should try grabbing that one first before reading the rest of my answer.
It looks like the plugin maintainer, Jesus Lanchas, made some updates over the last few days to enable oauth2 support. It has not been pushed to the plugin repository yet, but I was able to get it working with my project. Here's what I did:
#Install a local copy of the plugin WITHIN my project
mkdir plugins-local
cd plugins-local
git clone git://github.com/chechu/grails-facebook-graph.git
mv grails-facebook-graph facebook-graph
Update BuildConfig.groovy and tell grails where to load the plugin from. I put this line before grails.project.dependency.resolution
grails.plugin.location.'facebook-graph' = "plugins-local/facebook-graph"
Uninstall the existing facebook-graph plugin from my project
grails uninstall-plugin facebook graph
This is a temporary solution for me until the offical update hits the repo, but it allows me to make sure I'm using the same new code everywhere.
EDIT: we released our Facebook Grails SDK on GitHub :
https://github.com/benorama/facebook-grails-sdk.
Currently only tested on Grails 2.0…
Any feedback is welcome before we release it officially to Grails.org.
Indeed, it looks like Grails Facebook-graph plugin does not support OAuth2 Facebook authentication (which is required since October 1st 2011).
We have already ported the official PHP SDK V3.1.1 to ColdFusion 9 (https://github.com/affinitiz/facebook-cf-sdk).
Last month, we started to implement it as a plugin in Grails 2.0.
It is currently at an alpha stage so we have not released it yet, but it is working on our prototype.
To connect to the Facebook Graph API, it uses RestFB internally.
If you want to give it a try and give us some feedbacks, let me know, I'll sent it to you by email.
Trying to install https://github.com/Necromnius/Facebook-Ignited/ into codeigniter.
I'm new to the framework, how should I go about installing this, copying the files into
my project seems a bit heavy handed, is there another way?
Unless your installing a Spark (http://getsparks.org/), you'll need to manually copy the files into your project. The instructions for installation don't list the created/modified files so you'll have to browse through the repository to see which files need to be copied to your project.
Facebook Ignited has minimum package downloads which include only the files that you need to upgrade Facebook Ignited. You can find them in the Downloads Page with the latest version v1.1.2. I haven't created a Spark for it but that may be something worth looking into later on if interest is high enough. Hope that helps!
I want to develop an chat application, in which I successfully added files of DDXML, DDXMLElement, DXMLElementAddition etc., now I need to add XMPP framework files and its libraries, where do i find these files, is there any open source of these files?
I checked the site http://code.google.com/p/xmppframework/wiki/iPhone in which they mentioned which files to be added, but I didnt find those files to include in my project,
if anyone knows please tell me..
Thans in advance...
I think the google repo is officially moved to git at https://github.com/robbiehanson/XMPPFramework
Do you mean the XMPP sources?
Here they are:
http://code.google.com/p/xmppframework/source/checkout
You have to checkout the sources manually, that is the easiest way, or you browse the repository and save all files:
http://code.google.com/p/xmppframework/source/browse/
Other libs are described. AsyncSocket is this one:
http://code.google.com/p/cocoaasyncsocket/source/checkout
Here are their files for the project:
http://code.google.com/p/xmppframework/source/browse/?r=default#hg%2FXcode%2FiPhoneXMPP
And in your XCode project the framework you need to add is CFNetwork
So right click on your Frameworks folder in XCode
Add > Existing Frameworks > Select "CFNetwork"
and everything should be ready to run their iPhone XMPP example.
I've read a lot about IBugTraqProvider interface and implementing an issue tracker into the commit dialog of TortoiseSVN.
IBugTraqProvider is written here.
Is there a more simpler way not to do it, building the plug-in and installing it on TortoiseSVN. The Document is not that clear that a developer can create its own plugin.
I'm working with SalesForce as the Issue Tracker, and retrieved the WSDL file to integrate with the Working Items. Now I need to know how to connect it to TortoiseSVN.
Please any suggestions?
Take a look at issue-tracker-plugins.txt in the contrib directory in the TSVN source code. There's a fairly decent example in C# that should get you heading in the right direction.
When I built a plugin, I built a test harness that passed arbitrary information using the IBugtraqProvider interface, so that I could debug the plugin whilst building it, without having to reinstall the plugin into TSVN each time.