how to create a custom application in twitter? - objective-c

I’m trying to register a custom application in twitter can any one give some suggestions how to register a custom application in twitter? As I am new to twitter I didn’t found any controls to create to register for creating a custom application. Anyone's help will be much appreciated.
Thank you,
Monish.

Have a look at MGTwitterEngine to get you started and then ask more specific questions.

Related

Start to use Telegram apis

I wants to learn to use the telegram apis, but I not found a some tutorial which help me to start. I am very lost. Help;
Documentation of Telegram is very poor and outdated.
I suggest using TLSharp library written in Visual C#.
This is the first Step you should read it
https://core.telegram.org/api#getting-started
1- Creating an application
2- User authorization
3- And ..... (Continue)
Good Luck !!!

How to setup Linkedin Autentication with dotnetopenauth on mvc4

I am create a new asp.net website and I need to use a few authentication provider. I easily got all the providers working (thanks to this awesome template and scotts vid). I'm a little stuck with getting this to work with a linked in account. I assume it would be just as easy as it was for face book but I can't find any tutorials or snippets. I'm sure I'm not the first guy to try this. Please assist
Thank you
In the AuthConfig class under the RegisterAuth method call the method
OAuthWebSecurity.RegisterLinkedInClient("xxxxx","xxxxxxx");
with the appropriate inputs you receive from LinkedIn. Also another thing, I received an error when trying to log in using linkedin. I came across a post on stack overflow(wish I can give the link), you need to update
dotnetopenauth, I used nuget to update it. Thanks PinnyM.

Can we implement this Captcha in siebel

Hi I would like to try Captcha in Siebel Application.
Is there any 3rd party appliaction for thyese Captcha so tha i can integrate it with siebel.
If any such a site is there please share it.
Thanks.
This is an old question! But since this could be useful for someone in future, I am answering it..
I would suggest you to invoke external dll..
Set objTime = CreateObject("SAMPLE_PRJ_NAME.SAMPLE_CLASS_NAME")
objTime.METHOD_NAME
You can find sample VB code from here:
http://www.vbforums.com/showthread.php?645886-Captcha-Generator

Create/Update Page Tabs - Using API

I am very new to facebook application development and gone through the 'Getting Started' guides and Beginner tutorials. Actually it's good to place to start and familiarize the terms and core knowledge about app development.
There is a customer requirement where they can able to create/update custom tabs(for pages) for all of their customer's facebook account.
I just need to make sure that I am progressing on the correct path.
1) Create an App
2) Customize the permissions for accessing user's pages/tabs
3) Create/Update/remove/maintain the tabs with this application
Please advise if I missed anything here. It would be helpful if you point any good places to start/architecture etc... Thanks in advance.
To manipulate tabs for a page, you need the manage_pages permission.
For more details on what you can do with tabs using the Graph API: http://developers.facebook.com/docs/reference/api/page#tabs

How to post a new thread and new comments to a current thread in iOS to Salesforce's Chatter feed

Basically I am trying accomplish 2 goals:
(1) Start a new Chatter Thread, and
(2) Comment on an existing Chatter Thread that has been loaded.
I am using OAuth to get connected and am able to successfully view and update custom objects but can't seem to figure out how to access and create a new chatter thread using the same [switchboard create:] method.
Does anyone have any idea where to start? I have tried their documentation and the best I could find was Asynchronous HTTPS posts with a body and a parent ID but how can I accomplish the same thing using the provided switchboard interface in the iOS client?
Any help appreciated,
Thanks,
~Arash
Please check out the Salesforce Mobile SDK for iOS on GitHub. There's a great FAQ and examples to access Chatter.
You can use the SFRestAPI to access Chatter objects. See the Chatter REST API documentation for queries and relationships between Chatter objects.