bebo integration into iphone application - iphone

Hi. I am developing one application for iPhone. In which I have integrated twitter, facebook, Myspace. Using my app I can update status and image. In the same way I want to integrate Bebo social networking site.
I find Bebo's developer site http://developer.bebo.com/ here. But I did not found any API related to Objective C or iPhone related stuff. How can I do this integration?

It doesn't look like there's an existing API for bebo access on iPhone.
You'll have to think about rolling your own. The site you posted a link to seems to have useful info. Or there's some (hard on the eye) info here:
http://www.bebo.com/Profile.jsp?MemberId=6945769847

Related

How to integrate Salesforce in iphone app?

can any one help me in integrating salesforce in my app.I have made account in sales force and also created the remote-acces key.Can anyone tell how to ad objects ,dashboards etc in the iPhone app.I also want to know how to access the data on salesforce .for e.g. i want to get all the custom objects in salesforce and also want to create custom objects from iPhone app.Can anyone guide me in this respect.Any help is appreciated.
There are many ways to do it. I advice you to read carefully and choose the best way to do it.
Here are some links to read about it:
Making Salesforce and PayPal Work Together
SDK Project
Good Documentation and code
Salesforce provides mobiles SDK for iPhone, Android & hybrid platforms.
This SDK has samples on how to start with. There are lot of documentations available.
Basically the SDK helps to authenticate with Salesforce using oAuth, communicating with the objects using RestKit.
Refer the following URLs to start with..
Download the mobile SDK from the following URL.
https://github.com/forcedotcom/SalesforceMobileSDK-iOS
There is a discussion forum
http://boards.developerforce.com/t5/Mobile/bd-p/mobile
API docs
http://forcedotcom.github.com/SalesforceMobileSDK-iOS/Documentation/SalesforceSDK/index.html
Ref:
http://wiki.developerforce.com/page/Mobile_SDK

Twitter / Facebook integration

I am on a mid way of porting an iPhone application to Windows Phone 7. In that iPhone application it is providing provision for submitting score details through Facebook / Twitter mail etc. So I need to implement the same functionality in WP7, too. How can I implement this functionality in my Windows Phone project?
While searching I found some methods with the help of web browser. But that is not useful in my case. In my app I need to log in through the the designed page and need to update the score status to the social networks through my own view.
Please help me to achieve the functionality in my app. (If anybody has sample apps or links please attach that information, too.)
You can use the ShareStatusTask to post to facebook, twitter msn etc.
ShareStatusTask shareStatusTask = new ShareStatusTask();
shareStatusTask.Status = "My Score: xxxx";
shareStatusTask.Show();
I don't know if it's exactly what you're looking for, but ScoreLoop provides a free high score system as well as social network integration for Windows Phone games. I'm currently migrating my homegrown scores systems to ScoreLoop, looks good so far.

Deviant Art API or SDK for iPhone?

Do you have any idea if there is available an official DeviantArt API or SDK for iPhone?
I am building an application and I would like to integrate a search through Deviant Art public feed.
Is this possible?
There is no official API or SDK for the iPhone. From reviewing their forums, it has been suggested many times, but so far has not been provided.
There's something called DiFi: http://www.botdom.com/documentation/DiFi that may be worth a try.
If that doesn't work, you could try interacting with the web site using a hidden UIWebView by using the – stringByEvaluatingJavaScriptFromString: method. I've used this in the past to interact with web sites that do not provide an API.
That's a wonderful idea, Andrei, but I don't think deviantart has any APIs available. However, what you want to do might not be impossible, you would just need to build your app to work with deviantart's website.

Using Facebook Connect SDK for my iPhone app

Okay, I am using Cocos2d for developing an Iphone game, and I wish to implement Facebook Connect.
I found a tutorial about integrating Facebook Connect in the Cocos2d forums (http://www.cocos2d-iphone.org/forum/topic/3392), but the link it provides for downloading the Facebook SDK is... broken. And I have no idea where to actually download it! Every link I find in Google seems to have been removed from Facebook's documentation. And that tutorial is a bit old... is there any updated content about such? Can someone guide me as to where should I get started? (downloading the SDK)
Facebook seems to be notoriously bad for dropping support or unlinking features. Try:
http://developers.facebook.com/docs/guides/mobile/#ios

How make my website like iphone appearence

which control should i use to make my company's website to iphone look ...
so that when it open it iphone then it look a different that it look in normal browser...
actually i am an iphone developer and i have to give this answer to the web designer of my group...
There's also a great WordPress plugin called WPtouch which I've seen a lot of blogs use. That is, if most of your company's site is a WordPress blog...
Have a look at http://www.jqtouch.com/ or http://code.google.com/p/iui/ or one of the similar toolkits available for doing iPhone web applications.
The actual detection of an iPhone browser depends on your backend framework. A bit more information can be found in this question