Salesforce Developers Blog

Chatter REST API Webinar June 28th

Avatar for Quinton WallQuinton Wall
Come join Logan Henriquez and I for the Chatter REST API developer webinar on June 28th.
Chatter REST API Webinar June 28th
June 06, 2011
Listen to this article
0:00 / 0:00

Iphone It may be still snowing in Tahoe, but the Summer of APIs is blazing along. This weekend I put the finishing touches to the Chatter REST API Getting Started guide and now it is time to begin prepping for the developer webinar Logan Henriquez, Chatter REST API PM, and I will be presenting on on June 28th. Make sure you sign up early!

Some of us have been playing with the Chatter REST API for a while now through the early access program and had a taste at how much easier it is to interact with the Chatter feed including News Feeds, User information, and even pagination!

 

Take for example, if I want to retrieve my entire news feed, comments and all. If I was writing an iOS app, my code might look something like this:

1NSString *res_url = [NSString stringWithFormat:@"%@/services/data/v22.0/feeds/news/%@/feed-items", [auth.parameters objectForKey:@"instance_url"], recordId];
2NSMutableURLRequest *theRequest=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:res_url]];
3[theRequest setValue:[NSString stringWithFormat:@"OAuth %@", sessionId] forHTTPHeaderField:@"Authorization"];
4NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
5receivedData = [[NSMutableData data] retain];

Yes, that's it!

When I first started looking at the Chatter REST API I focused on the code and the optimizations it brings to developers. Code and open connectivity is an enabler; It's an explicit requirement as I mentioned on Friday (which btw, the follow up post is coming). I read an interesting article over the weekend about Facebook's growth in social ads, and how it will likely surpass Google's ad revenue. Of course, during the webinar, we are going to crack open some code, but we are also going to talk about a few new business models for the social enterprise that the Chatter REST API enables. 

So, sign up early, come with your questions and happy coding!

 

More Blog Posts

Build Controllable and Scalable Integrations with Pub/Sub API

Build Controllable and Scalable Integrations with Pub/Sub API

This is the first in a series of blogs focusing on best practices to harness the scalability and performance of Pub/Sub API.August 20, 2024

The Salesforce Developer’s Guide to the Winter ’25 Release

The Salesforce Developer’s Guide to the Winter ’25 Release

The Winter '25 release is here! In this post, we highlight what’s new for developers across the Salesforce ecosystem.September 03, 2024