API stands for Application Programming Interface. A program's API defines the proper way for a developer to request services from that program.
0
votes
0answers
3 views
How to perform a facebook tags via appcelerator api
I am using facebook api from appcelerator, i am able to publish a photo to facebook, but i am having difficulty to perform a tag. Can any one help?
0
votes
1answer
3 views
How to build a Rails REST API with 2-legged OAuth?
I've been struggling for two days with OAuth and RSpec to get a properly tested RESTful API using a 2-legged OAuth authentication so I thought about posting it here and prevent more pain to happen.
...
0
votes
0answers
10 views
C# Facebook API - The user hasn't authorized the application to perform this action
I am having a headache in trying to figure out how to post updates to my Facebook page as I keep receiving the error: "(OAuthException - #200) (#200) The user hasn't authorized the application to ...
0
votes
0answers
9 views
Recommended strategy for emulating REST endpoints in command-line API?
Background
I'm designing a command-line API to a HPC Cluster (it API might eventually be published over the web as well).
The question
I wonder what would be the be the recommended strategy for ...
0
votes
0answers
5 views
Getting Gibbon and Mailchimp to work
Newbie to Rails, Gibbon and Mailchimp API. My goal is to send the email addresses of new users to my Mailchimp list using Gibbon.
I'm using Devise for signup, and I figured I could just attach the ...
0
votes
0answers
7 views
Send and received http headers with Codeigniter RESTserver
I am building a RESTful API using Phil Sturgeons RESTServer. I've got it working fine and responding as I want it to using file_get_contents but I am building it for someone else to use and they will ...
0
votes
0answers
35 views
The Twitter REST API v1 is no longer active. How to get UserInfo using API v1.1 in PHP?
Twitter has updated API version now they have 1.1 ( https://dev.twitter.com/docs/api/1.1 )
Any one know how to get User Information using twitter screen_name parameter.
Previous this returns valid ...
-1
votes
0answers
11 views
onPlayerStateChange Youtube API doesn't work
Following api don't work. Please help me in figuring out the problem.
<script src="http://www.youtube.com/player_api"></script>
<script>
// create youtube player
var ...
-2
votes
0answers
17 views
twitter new api v1.1 can not get image url and id
i have problem with twitter new api 1.1
i used to get profile_image_url and id throug this link
http://api.twitter.com/1/users/lookup.xml?screen_name=
now when i enter that page they say they ...
0
votes
0answers
9 views
Youtube HTML5 API works fine, but displays 'origin' error in console
I am using youtube's HTML5 API, which works very well, but the javascript console keeps displaying this error:
Blocked a frame with origin "http://www.youtube.com" from accessing
a frame with origin ...
2
votes
3answers
43 views
Providing RESTful JSON API in Java
What is the idiomatic way of providing RESTful JSON API in Java? Do you use JAX-WS and XML annotations (@XmlElement etc.)? How do you serialize annotated objects to JSON (using Jackson or similar ...
0
votes
0answers
18 views
What is the right way to create a stackexchange API filter?
I'm trying to create a filter following the documentation, but a few things are quite unclear:
How to create a filter without a base?
What are mandatory the fields to include in any filter?
How to ...
0
votes
0answers
8 views
API centric application or REST or Web service Where to start
BRIEF:
I am working on a web application, we decide to make some major. We did some researches and we found this tutorial that talks about "Creating api centric application".
we found the topic is ...
0
votes
0answers
12 views
how to login into google plus on codeigniter website
I want log in via my website but i have no idea can someone help me to implement this into my website in which i am using codeigniter framework
<?php
class Auth extends CI_Controller
{
public ...
0
votes
0answers
8 views
Twitter Api 1.1 Bad Authentication
I have these code in Twitter Api v 1
$url = get_data("http://api.twitter.com/1/users/show.json?screen_name=".$name);
$xml = json_decode($url, true);
$id = $xml[0][id];
$av = ...