How to integrate twitter app in my iphone? [duplicate] - ios

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How to connect to Twitter from iPhone?
hi,
can anybody please explain how to integrate the twitter app in my iphone app with simple example?

You have twitter iOS SDK, which can be downloaded from here. And the documentation there is good enough to get you started.
From iOS 6 onwards, you can use Apple's own SocialFramework to post tweets. From Apple's documentation
The Social framework (Social.framework) provides a simple interface
for accessing the user’s social media accounts. This framework
supplants the Twitter framework that was introduced in iOS 5 and adds
support for other social accounts, including Facebook and Sina’s Weibo
service. Apps can use this framework to post status updates and images
to a user’s account. This framework works with the Accounts framework
to provide a single sign-on model for the user and to ensure that
access to the user’s account is approved.

Related

Does the Soundcloud app support being shared to?

Can you share an audio file from within your app to Soundcloud, using the Soundcloud app? That is :
User hits the “Share” button
You present a UIActivityViewController
A bunch of apps are shown. Including the Soundcloud app.
If user selects Soundcloud app, the app is openend, and it begins the UI of uploading the audio file to Soundcloud.
It seems to me that Soundcloud does not support this, but I might be mistaken.
Note : Soundcloud used to support an iOS SDK. On top of that you would have to register your app at the developer portal of Soundcloud to get a unique key linked to your app.
The iOS SDK is no longer being supported by Soundcloud, and at this moment the Soundcloud website does “temporarily” not support registering any new apps, but it seems to be in this state for a long time.
No, this functionality does not exist in the SoundCloud app as a share extension. SoundCloud's old iOS SDK, CocoaSoundCloudAPI, did support this functionality. You can look at the code here to see how it worked (you'll have to find a CLIENT_ID to use since SoundCloud is no longer accepting API app registrations), or use the HTTP REST API.

How to integrate Tez payment gateway in swift iOS?

I want to implement google's Tez payment into my app, but as far I found that google provides api integration guide for web and android only(https://developers.google.com/tez/documentation/).
Is anyone know from where I can get documentation guide to implement Tez in my app?
If no source available, then shall we redirect our app to the Tez app in iOS Appstore?, if this'll be the case, then how can I redirect to my app after the successful payment in Tez app.
Looking forward for the guidance.
That is not possible, if Google is not providing any framework to integrate the payment for iOS. Wait for the time, till the Google launch framework for iOS.
You can redirect the user to Tez App on AppStore, but it won't help, because you will not get the idea about the payment status as well as cannot redirect back to your app.
Hope it helps
As a possibility, you can implement Tez framework on server side, and integrate it through your iOS app using web service (Since iOS SDK is not available). But remember to check the apple review guideline about payments through a 3rd party framework because you might have to justify them the use of it for approval.

Share data on Weibo and QQ internation in iOS

I am trying to share data on QQ internation and Weibo, but not getting such a good way to post data on this messengers, i tried a lot for sharing data on weibo and qq internation but not getting result.
guide me to correct way and which is the good way to share data on this both messegner.
You might want to look at the SDK's they offer. Third-party service providers encapsulate their services on platforms such as iPhone in special SDK (software development kit) so you can easily talk to their servers.
QQ iOS SDK
Weibo iOS SDK
Try MonkeyKing library.
MonkeyKing helps you post messages to Chinese Social Networks, without
their buggy SDKs.
MonkeyKing use the same analysis process of openshare, support share
Text, URL, Image, Audio, and Video to WeChat, QQ or Weibo. MonkeyKing
also can post message to Weibo by webpage. (Note that Auido and Video
are only specifically for WeChat or QQ)
One more thing: MonkeyKing supports OAuth.

Instagram API fetching images with Specific Hashtag

Hi I am pretty new to iOS and the Instagram API. I want to retrieve all pictures with a specific hashtag in an iOS app. How can i do that? Any help would be awesome.
Start reading about Instagram API. You need to make use of the following Tag Endpoint -
Once again, Instagram API documentation is very rich. Read about Tag Endpoints here.
Furthermore, if you are new to iOS programming, I would strongly suggest you to complete Build a Photo Browser iPhone App project by Team Treehouse. You will be creating a cool iPhone app for browsing Instagram photos.

Facebook iOS SDK vs Social framework

I want to write app that is heavily integrated with Facebook. I'm not sure what shoud I use - sdk provided by Facebook or new Social Framework provided by Apple. Do you know some pros and cons of them?
[EDIT]
I ended using Social Framework provided by Apple, because it's much easier to integrate, It will be develop in future, and I have access to device owner Facebook account, so user don't have to log in to Facebook when using my app. I want to do some custom stuff, so I get oauth token from ACAccountCredential and then I make requests with AFNetworing to Facebook's Graph API.
The Social Framework is designed for simple, site-neutral data manipulation. Examples might include getting the user's 'activity feed' (as described by the docs) or posting a new status or photo. It currently works with Twitter, Facebook and Weibo however, other than lack of features, the current main disadvantage is that it is limited to iOS 6, which won't be as much of a problem in the future.
On the other hand Facebook does have an iOS SDK that makes it reasonably easy to integrate Facebook into your app, and it is much more powerful than the Social Framework. Another benefit is that support goes back to iOS 4.3.
I'd recommend using the Facebook iOS SDK over writing your own custom one and using OAuth because Facebook has already done the work for you.
I've struggled with this decision for a long time and came to this conclusion. If your app doesn't care for iOS 5 and older phones, then the iOS Social framework is the way to go, as it allows the user to share with any of the popular social outlets (Facebook, Twitter, email, Weibo, SMS...) just like one can do in mobile safari. According to Apple, 89% of the iDevices are already on iOS 7. The percentage will be higher if you include iOS 6.

Resources