Social networking on smart phones? - networking

I have to implement application that can post to the selected network I can select from the application drop down.

There are Objective-C frameworks for Facebook (Three20) and Twitter (Twitter-OAuth-Library & MGTwitterEngine).
A quick trip to Google find facebook-android-sdk for connecting to Facebook on Android.
As far as Twitter goes, you can find a whole list of APIs for various languages/platforms on Twitter's developer website.
EDIT
A second trip to Google finds this on developer.myspace.com for adding MySpace to an iOS app. Also, see this page and this page on LinkedIn's Developer Network.
Basically, LinkedIn is just using a JSON encoded API with OAuth. You should be able to handle that with any OAuth library.
EDIT2:
It seems that I've found another great library. Check out ShareKit, which helps with alot of what you're trying to do.

#appaspect and #moshe, this is an old thread so the question my no longer be relevant, but here's a new open-source SDK and social api service: Socialize http://www.GetSocialize.com . Full feature set at http://go.GetSocialize.com/features
DROdio

Related

Google One-Tap Sign In / YOLO project status

we are trying to enable the One Tap sign-up from Google. It seems there was some security concern (reading online not officially by google) and the official document has been taken out by Google.
Is that API still working, can we integrate it or should we wait for it?
You can find related functionality in Smart Lock for Passwords section here
Looks like original SDK was removed in favor of more common browser Credentials Management API (draft of w3c) in Сhrome 51 and then reworked in Chrome 60.
Also, they have a codelabs tutorial to learn it step by step.

Different ways to integrate web phone/softphone/VOIP in asp.net web site

I am planning to integrate a web phone/softphone in my ASP.Net web site. My idea is to provide an interface on my web page by which user can start a VOIP call to a pre-defined number.
Since I am new to VOIP/SIP domain I am not able to google exactly what I need or from where should I start. What I understand so far is there are open source SIP libraries and some licensed SDKs as well. Also there are some off the shelf client side plugins available which we can embed in the web site.
I am looking for various solutions and also open for paid SDK or client side plugin. So far I have read about Ozeki C# SDK, Mizu plugin and Zoiper plugin.
Can someone help me understand following:
1. From implementation point of view what we will be the difference between using open source SIP libraries vs paid SDKs like Ozeki vs readymade plugins like Mizu or Zoiper
Which are other options available to implement this?
From a reliability perspective which SDK or library is best suited?
Thanks
Amey
Other options: any softphone that can register protocol handler - if you have control over webpage content and can insert "callto" or similar links into it. If you do not have control over webpage - add Telify plugin for firefox to replace text that looks like phone number with equivalent link.

Facebook Connect for Qt

I am trying to use the facebook API provided by Nokia Developer:
http://www.developer.nokia.com/Community/Wiki/Facebook_Connect
I need to know what library or files should i include to connect to this API. And if you can provide me with any important guidelines it would be great.
Thanks,
Did you actually read the page you linked to? The first line has a link to the download location and the entire page is full of examples of how to use the API.
However, if you did follow the download link you'd see this:
Facebook is deprecating the old REST api upon which this library is
based on. The new api is called facebook graph api and that should be
used, the rest api breaks all the time so its not a good idea to use
it. Please look at http://gitorious.org/qfacebook for a Qt
implementation of the new facebook graph API
Which makes your question somewhat irrelevant.
With Qt 5, you can now use the V-Play Facebook Qt Plugin.
It wraps the native Facebook SDK around a QML item and thus has the advantage that native login functionality and the whole Facebook Graph API is available cross-platform.
There is a free sample, documentation and tutorials available here: http://plugins.v-play.net/plugins/facebook/

how to write on facebook wall in ASP .Net

I want to post on facebook wall from my website, i had built the site in ASP .Net, I don't know how to perform this task. Can anyone please guide me or give me a script to post on facebook wall.
Here is a documentation on Getting started with Facebook developers
The Graph API is the core of Facebook Platform, enabling you to read and write data to Facebook. It provides a simple and consistent view of the social graph, uniformly representing objects (like people, photos, events, and pages) and the connections between them (friendships, likes, and photo tags).
Here's a sample application from CodeProject to use the Graph API.
hope it helped !
I've had some fun playing with the Facebook C# SDK for creating Facebook applications.
Are you using C# on your site?
The SDK is quite easy to get started with and there are a few tutorials etc...
Facebook C# SDK

facebook chat in silverlight

I have a silverlight application and i want is that my application should ask for the user name and password and the client should be able to start chat with their facebook friends.Could this be done? and if so then is there sample code available
This is the question of what kind of API Facebook provides. There aren't any inherent issues here if Facebook exposes this sort of functionality to third parties. I'm not an expert in this, but reading the facebook documentation should help you out.
http://developers.facebook.com
Also maybe check out these links:
http://wiki.developers.facebook.com/index.php/LiveMessage.send
http://wiki.developers.facebook.com/index.php/Fb:chat-invite
It looks like some folks developed a framework to more easily interop facebook with .net based technologies:
http://facebooktoolkit.codeplex.com/
Here they are discussing the LiveMessage stuff:
http://facebooktoolkit.codeplex.com/Thread/View.aspx?ThreadId=62384
People did facebook chat clones on the web, and in standalone apps (http://www.faceoffim.com/), so at least in principle it's certainly doable.

Resources