Skip to content

Instantly share code, notes, and snippets.

@pbapi
pbapi / peoplebrowsr-Top-Followers-api.rb
Created February 14, 2012 04:16
PeopleBrowsr API - Top Followers
require 'net/http'
# Proof (GET)
app_id = "[app_id]"
app_key = "[app_key]"
last = "yesterday"
count = "30"
source = "twitter"
@pbapi
pbapi / peoplebrowsr-Top-Followers-api.py
Created February 14, 2012 04:13
PeopleBrowsr API - Top Followers
import urllib2
app_id = "[app_id]"
app_key = "[app_key]"
last = "yesterday"
count = "30"
source = "twitter"
term = "Pepsi"
number = "10"
@pbapi
pbapi / peoplebrowsr-kredentials-api.rb
Created December 21, 2011 07:09
PeopleBrowsr - Kredentials API
require 'net/http'
app_id = "[app_id]"
app_key = "[app_key]"
source = "twitter"
term = "Pepsi"
url = 'http://api.kred.ly/kredentials?'
url = url + 'app_id=' + app_id
@pbapi
pbapi / peoplebrowsr-kredentials-api.py
Created December 21, 2011 02:46
PeopleBrowsr - Kredentials API
import urllib2
app_id = "[app_id]"
app_key = "[app_key]"
source = "twitter"
term = "peoplebrowsr"
url = 'http://api.kred.ly/kredentials?'
url = url + "app_id=" + app_id
@pbapi
pbapi / peoplebrowsr-kredoutreach-api.php
Created December 19, 2011 18:09
PeopleBrowsr - Kred Outreach API
<?php
$app_id = "[your app_id]";
$app_key = "[your_app_key]";
$term = "PeopleBrowsr";
$source = "twitter";
$first = "1323466328";
$last = "1318195928";
$count = "30";
@pbapi
pbapi / peoplebrowsr-kredinfluence-api.php
Created December 19, 2011 18:05
PeopleBrowsr - Kred Influence API
<?php
$app_id = "[your app_id]";
$app_key = "[your_app_key]";
$term = "PeopleBrowsr";
$source = "twitter";
$first = "1323466328";
$last = "1318195928"; OR
$count = "30";
@pbapi
pbapi / peoplebrowsr-kredinfluence-api.rb
Created December 19, 2011 18:02
PeopleBrowsr - Kred Influence API
require 'net/http'
app_id = "[app_id]"
app_key = "[app_key]"
source = "twitter"
term = "Pepsi"
first = "1323466328"
last = "1318195928"
count = "30"
@pbapi
pbapi / peoplebrowsr-kredscore-api.rb
Created December 19, 2011 17:58
PeopleBrowsr - Kred Score API
require 'net/http'
app_id = "[app_id]"
app_key = "[app_key]"
source = "twitter"
term = "Pepsi"
url = 'http://api.kred.ly/kredscore?'
url = url + 'app_id=' + app_id
@pbapi
pbapi / peoplebrowsr-kred-api.rb
Created December 19, 2011 17:55
Kred API - Kred (All)
require 'net/http'
app_id = "[app_id]"
app_key = "[app_key]"
source = "twitter"
term = "Pepsi"
url = 'http://api.kred.com/kred?'
url = url + 'app_id=' + app_id
@pbapi
pbapi / peoplebrowsr-kredoutreach-api.rb
Created December 19, 2011 07:37
PeopleBrowsr - Kred Outreach API
require 'net/http'
# Proof (GET)
app_id = "[app_id]"
app_key = "[app_key]"
last = "yesterday"
count = "30"
source = "twitter"