Does anyone know any applications that make use of the friendfeed API?
Ping.fm posts to FriendFeed.
FriendDeck aggregates from FriendFeed.
Both use remote key authentication and the FriendFeed API.
FFToGo is a nice mobile interface for FriendFeed that was built on the FF api. Its developer was subsequently hired by Friendfeed and still works there.
There is also an auto follow app http://www.ffollo.com built using the new FriendFeed API.
Well, I recently released a script that uses the FriendFeed API, it's on GitHub.
Related
I am having some problem in understand how to integrate a videocall API with a Wordpress site.
I am developing a website which has a "meeting room", this site is built using Wordpress. I am trying to use some videocalls APIs, but couldn't understand the steps in order to integrate with de Worpress. Do I have to build a plugin?
I know some existing plugins for videocall, but they do not have the features I need, therefore I found some videocalls APIs that have the features I need. I also know how to embbed a videocall using iframe.
Thanks in advance.
If you decide to write your own video communication plugin using WebRTC technology, pay attention to:
select signaling for videochat
creating of Turn server
try this example: https://wordpress.org/plugins/wp-webrtc2/
I have used APIs that are hosted somewhere like Google custom search APi
However I need to use Amazon MWS API for next project.
As I searched on Google there is no hosted version and neither details about how to host one such.
Please guide me about using this API.
I'm not sure I completely understand what you mean about a "hosted" version, but everything related to Amazon MWS is locatated here: https://developer.amazonservices.com/
The developer guide: http://docs.developer.amazonservices.com/en_US/dev_guide/index.html
The scratchpad: http://docs.developer.amazonservices.com/en_US/scratchpad/index.html
The seller forums: https://sellercentral.amazon.com/forums/forum.jspa?forumID=35&start=0
So, first off you are not alone. Trying to figure this out has drove me nuts.
I am pretty new to programming and web apps.
You need a Professional Selling Account ($39.99/month)
https://developer.amazonservices.com/ --->> Sign up or Manage MWS
You need to register as a developer as well.
You are looking for "Client Library".enter image description here
There is a different library for each of the APIs and their respective languages.
You must be logged in to view the libraries i believe
I start using laravel (ver 4) and I got to the point I need to use authentication on my website.
I tried to find package that will allow me to wrap the all idea of "standard" / simple authentication and the social one (like facebook, google+ and etc..).
I found ion_auth and with some extensions it's allow me to use one authentication library for all kind of users - but it only works in codeigniter framework.
After a lot of research I couldn't find any ready package that allows me what I'm looking for, Does anyone familiar with such library or had this kind of issue and can tell me how he handle it?
This is a paid library, but it works pretty well. https://cartalyst.com/manual/sentry-social
i had a good experience using artdarek/oauth-4-laravel. it also has got a nice set of examples for using with different login providers.
Could any one give me suggestion on how to get friend list on google plus using PHP.
Is there any plugin or widget to do this.It would be great to know.
Thanks in advance.
Your user needs to grant your app access to this information via the OAuth 2.0 scope https://www.googleapis.com/auth/plus.login and then you can use the REST API or client libraries to get the list of friends.
See the Google+ PHP quickstart for a sample application that accomplishes all of the steps necessary for what you want to do. The sample uses the Symfony framework to keep the code concise, but you should be able to take away how to do the same in your own PHP environment.
Also, see the Google APIs PHP client library that you can use in your project. This library is embedded in the quickstart via composer.
I'm using the dropboxd service under Linux, which requires you to log into their website e.g. https://www.dropbox.com/cli_link?host_id=2173bf325f94beee3b1879d2c7b49e69 to link the machine to your account.
Is there any programatic way to do this (ideally using Java)? To access the website above it seems you need to login using forms (which seems tricky to do programatically), and their basic REST API (https://www.dropbox.com/developers/core/docs) doesnt seem to cover the cli_link command.
I could write an app to do the sync using their full API, but it seems like overkill since aside from the cli_link requirement the basic dropboxd does all that I need.
The official Dropbox desktop client is unrelated to the API, though both the API and the Linux CLI require user interaction on the Dropbox web site (once per link) to authorize the linking. Also, note that automating/scraping the site itself is not allowed by the terms:
https://www.dropbox.com/terms#acceptable_use
Not really a solution for DropBox users, but in the end we just moved over to use MediaFire instead. That has a full REST API and doesnt require any manual intervention.