Comments on: The bell https://onlineaspect.com/2009/12/06/the-bell/ building stuff on the web with Josh Fraser Mon, 18 Jan 2010 22:25:29 +0000 hourly 1 By: Josh Fraser https://onlineaspect.com/2009/12/06/the-bell/comment-page-1/#comment-833 Mon, 18 Jan 2010 22:25:29 +0000 https://onlineaspect.com/?p=567#comment-833 In reply to Kevin Owocki.

I haven't done a thorough comparison of Yammer to Socialcast, but I know we tried Yammer first and didn't really like it. Perhaps someone else can chip in w/ a better comparison, but here are a few of the main things I love about Socialcast:
– The have a really great attention to detail in their UI
– You have lots of options for clients (web, desktop, iphone)
– Their API rocks

]]>
By: Kevin Owocki https://onlineaspect.com/2009/12/06/the-bell/comment-page-1/#comment-832 Mon, 18 Jan 2010 18:37:28 +0000 https://onlineaspect.com/?p=567#comment-832 Good post Josh. Our team is very pro-data sharing. I'm curious about something: Why did you guys go with socialcast for team data sharing (as opposed to Yammer)? We're on Yammer, and at first glance, SocialCast looks more powerful

]]>
By: Josh Fraser https://onlineaspect.com/2009/12/06/the-bell/comment-page-1/#comment-805 Wed, 09 Dec 2009 06:39:01 +0000 https://onlineaspect.com/?p=567#comment-805 In reply to Chris.

Sure, in PHP it looks like this. It's just a simple REST call:

function post_to_socialcast($message, $url = false) {
$socialcast_url = "https://SHORTCODE.socialcast.com/api/messages.json";
$message = "message[title]=".$message;
// link this message?
$message .= ($url) ? "&message[url]=".$url : "";

// curl options
$options[CURLOPT_SSL_VERIFYPEER] = 0; // important
$options[CURLOPT_USERPWD] = "EMAIL:PASSWORD";
$options[CURLOPT_POST] = 1;
$options[CURLOPT_POSTFIELDS] = $message;

single_curl($socialcast_url, false, $options);
}

Obviously you need to replace SHORTCODE, EMAIL and PASSWORD with your own values. This code uses my curl library that you can find at: https://joshfraz.wpcomstaging.com/2009/01/26/how-to-use

Hope that helps. Feel free to email me if you need more.

]]>
By: Josh Fraser https://onlineaspect.com/2009/12/06/the-bell/comment-page-1/#comment-804 Wed, 09 Dec 2009 06:33:01 +0000 https://onlineaspect.com/?p=567#comment-804 In reply to John Bidder.

There's not much for me to show, but API is super simple. I got our integration up and running in less than 10 minutes. I recommend you just dive in and try it out.

]]>
By: Adam Patten https://onlineaspect.com/2009/12/06/the-bell/comment-page-1/#comment-803 Wed, 09 Dec 2009 06:25:56 +0000 https://onlineaspect.com/?p=567#comment-803 This sounds interesting. We could use something like this as well, I'm going to check it out. Thanks for the info.

]]>
By: Chris https://onlineaspect.com/2009/12/06/the-bell/comment-page-1/#comment-802 Wed, 09 Dec 2009 00:20:21 +0000 https://onlineaspect.com/?p=567#comment-802 Would you be up for sharing your code behind the bell? We use socialcast also and currently only display an image of a bell. Thanks.

]]>
By: John Bidder https://onlineaspect.com/2009/12/06/the-bell/comment-page-1/#comment-801 Tue, 08 Dec 2009 22:13:26 +0000 https://onlineaspect.com/?p=567#comment-801 Hi – we’re building a sharepoint web part for socialcast – I head up business comms in local govt here in UK. Would love to see a screen grab of your api useage and hear about any tips you found worked well for socialcast adoption.
Thanks

]]>