upload video in facebook and twitter in ios [closed] - ios

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Now currently I m creating an video app for iphone. I m new to ios. In my app I need to share my video in Facebook as well as Twitter. I dont know how to done this. Then my app should support IOS5, IOS6 and IOS7. So I need any method to support all these versions.. Any suggestion greatly appreceated..

The first hit on Google to "facebook video ios" points to a tutorial on uploading videos to Facebook: https://developers.facebook.com/blog/post/2011/08/04/how-to--use-the-graph-api-to-upload-a-video--ios/
More details on the video Graph API: https://developers.facebook.com/docs/reference/api/video/
I think you can do the same search query for uploading videos to Twitter.

Related

How to use Twilio to voice call from browser pc to esp32? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
How to use Twilio to voice call from browser pc to esp32?
I want to find ways to telemedicine with esp32-cam to stream video and now I'm finding for audio stream too, please suggest me.
Twilio developer evangelist here.
The Twilio Voice SDKs and the Twilio Video SDKs both support iOS, Android and web browsers. There is no support for Arduino/esp32. If you can run a web browser on the esp32, then you might be able to use the JavaScript SDKs.

iOS and Mechanical Turk [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to develop an iOS app which can upload an image from the device to be processed in an HIT on Amazon Mechanical Turk and the text result can be relayed back to the iOS device.
I know there is no native iOS API for Mechanical Turk, but is there a way to go around that by using something else perhaps?
Thanks!
You shouldn't use the Amazon API directly from your app, because in that case you would need to distribute your AWS access key & secret with the app. (I'll let you figure out why this would be bad thing)
You need a backend for your app, from where you'd send work items to the Amazon service, and notify the iOS app instance upon completion.

Walkie talkie open source library on iOS? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have to do two way walkie talkie iOS app.. I searched a lot got information about 'push to talk service'. But can't get clear idea. May anyone can help me? How it works by iPhone for a particular channel... I got a iTunes link
https://itunes.apple.com/us/app/two-way-walkie-talkie/id595560554?mt=8
Can anyone tell me how this app works? Is they recorded and send voices to other user or they are sending live audio ? Also they are not getting any information from user..
Most walkie talkie apps are done by sending recorded audio file instead of sending live audio stream.
If you want to implement a record-and-forward type walkie talkie, you need to have a backend file server for storing temporary audio files which can be downloaded by the receiver side.
If you choose the hard way, i.e, sending live audio stream, it's another level of complexity. You're look at implementing literally a VOIP app. You may use PJSIP for your VOIP core functionality. However, you might end up spending months on the project in this case.
Personally, I strongly recommend you to go with the first one.

Instagram iOS API to Post Video [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there any public API to post a video on Instagram?
We know that on iOS it is possibile to share an image (JPEG or PNG) using the iPhone Hooks via iOS Document Interaction.
On Android it is possibile to share a video via Android Intent.
The iOS App Cinamatic is doing this after oAuth API, but according to Instagram API documentation there's no mention to a media object of type 'video'.
We also know that other apps, that are not using Instagram oAuth, will save a video in the Video Folder and then open the Instagram Camera via the mentioned iPhone Hooks, in order to let the user to open that video, but that it is not so smart.
So how Cinamatic is doing this using the API?
The undocumented Instagram Video Hook let you share videos to Instagram quite like the Camera Hook
URL: instagram://library
Path parameter: AssetPath
Comment parameter: InstagramCaption
and so you have something like
NSString *instagramURL = [NSString stringWithFormat:#"instagram://library?AssetPath=%#&InstagramCaption=%#",videoURL,[videocaption stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLHostAllowedCharacterSet]]];
if ([[UIApplication sharedApplication] canOpenURL:instagramURL]) {
[[UIApplication sharedApplication] openURL:instagramURL];
}
For now Instagram doesn't support any 3rd party directly upload video. There is a discussion about this here: Posting video on instagram using hooks

facebook chat in delphi? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to connect to facebook chat from my delphi application , change the status message or post something on the wall? Do u know any way i can acomplish this ?
If you want to connect to Facebook Chat with Delphi, check out this XMPP library for Delphi. Facebook chat uses XMPP as its communication protocol.
If what you want is change your Facebook status or post some stuff to the wall, you need to use Facebook API through Delphi. Maybe taking a look al Delphibook might help.
Face book chat uses the XMPP or Jabber Protocol
Other Similar questions on SO
jabber-xmpp-library-for-delphi-7
any-complete-library-for-jabber-in-delphi
Exodus is what we plan on trying in house, http://code.google.com/p/exodus/
As For Posting things on the wall, i think you have to register with Facebook to use the Facebook API

Resources