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
2 views
Unable to execute ListBroadcasts using Google YouTube API on Windows 8
I am unable to execute ListBroadcasts example given by Google using YouTube API on Windows 8. I am getting the following error:
IOException: 400 Bad Request
{
"error" : "invalid_client"
}
...
0
votes
0answers
6 views
Google Music API: how to request the next 1000 songs?
I'm trying to figure out how to use Google Music API. I managed to get the auth token as described in http://dpogue.ca/gmusic.html:
$ curl -d accountType=GOOGLE
-d Email=jondoe@gmail.com
...
1
vote
0answers
9 views
Rest philosophy for updating and getting records
In my app I'm displaying Race objects that essentially have three states: pending, inProgress and completed. I want to display all Races that are currently pending or inProgress, but not the ones that ...
1
vote
1answer
15 views
RESTful - Different URI of same resource to get different forms of same resource
I'm pushed into a peculiar situation where I'm not able to decide what is wrong and what is right.
I've a resource called Invoice. To get a JSON or XML representation I use below URI
...
0
votes
1answer
7 views
Specify posts to appear on Tumblr custom page
I want to create a custom page and I want posts with a couple of tags (e.g. Photoset and Gifset) to appear on it. I just learned that one way to do this is by using the Tumblr API. I'm not very ...
0
votes
0answers
8 views
Twitter REST API recursive search
i'm trying to get a recursive twitter search working, but after the first json response nothing happens. I have no idea why this is not working.
http://jsfiddle.net/N6ED2/1/
function ...
0
votes
1answer
7 views
Using Stripe Connect to facilitate transactions between users?
Specific requirements for my app:
buyers must be able to use credit card
i want to collect a portion of each transaction (fee)
I was initially using Dwolla but realized that users would not be ...
0
votes
0answers
8 views
getting instagram error “OAuthPermissionsException”
I am facing a really big problem with the Instagram API. The default given permission on the Instagram API is basic which is read-only, and for getting read/write permissions you need to pass the ...
0
votes
0answers
27 views
Cache thousands of JSON files, each one corresponding to an user
Maybe for some of you is not a big deal, but for me is the first time when i am dealing with a large amount of data which need to be cached in a smarter way in order to save resources.
So, here is ...
0
votes
0answers
8 views
SSML using Chrome TTS
I'm trying to give a little more clarity to TTS sentences by indicating emphasis, etc. I'm using the Chrome TTS API, which indicates that it accepts SSML-formatted documents in addition to raw text.
...
0
votes
1answer
16 views
how to authenticate Soundcloud API with redirect_uri (callback.html)
The final goal is to let users be able to upload / download files through the soundcloud API.
I have registered my app, but now I have got problems with the authentication. In the app registration i ...
0
votes
0answers
8 views
Jolokia / JMX authentication in Javascript app
I develop a javascript-based frontend for JMX / jolokia backend. Basically, the tool should be a prettier html5-based JConsole for people, who don't code in Java.
My question is, how am I supposed ...
0
votes
1answer
27 views
Using Google for Image Search from a Mobile app
I'd like to implement the following: in a mobile app (Android, Windows Phone) the user takes a photo, and my app searches for such an image on the web. I was told that Google has something like that. ...
-1
votes
0answers
5 views
new Admin SDK Reporting and Cloud Directory API's Python support [closed]
When will the new reporting and cloud directory API's be supported by Google APIs Client Library for Python?
Will these API's be included in the Apiary Discovery/Build?
0
votes
2answers
23 views
Check if YouTube User Exists with PHP
Okay so I'm trying to redirect a user back to subto.me.com if subto.me/args doesn't exist I have this code
if(file_exists($BASEPATH."partials/".$request['args'][0].".php")) {
...
2
votes
1answer
47 views
Designing function prototypes for a singly-linked list API in C [closed]
I am in the process of rewriting in C all the data structures that I learned about a few years ago to increase my understanding of data structures and the C language. The first one I'm doing is ...
0
votes
0answers
18 views
can I use API's with Jquery mobile?
my question probably reveals my lack of experience.
I'm trying to build a mobile app that can process payments. It also needs access to maps, and location related api's and probably another API.
I ...
-1
votes
0answers
49 views
How to get API to work for Iphone app? Objective C?
I am trying to develop a mobile app. I'm new to Objective C, and relatively new to coding. I've only done front end stuff so far.
Now I'm trying to add my first API to my Xcode project.
I want to ...
0
votes
1answer
5 views
How can i specify SSL version in curb
I am interacting with an API that requires SSL3
From the command line i form the request like:
curl -ssl3 -H 'Authorization: Bearer XXXX' https://capi-eval.signnow.com/api/user/documentsv2
With ...
0
votes
1answer
13 views
API-Centric design: How to minimize bandwidth costs provided by client side applications?
I have spend last few days studying about RESTful API in general using book such as O'really RESTful Web Services and, I also read stuff about API-centric design using tutorial such as creating an ...
1
vote
0answers
13 views
Unable to cancel a Servicestack Facebook authentication proccess
When accessing "/api/auth/facebook" i'm redirected to facebook ouath dialog, but when trying to cancel, i keep getting redirected to the same facebook ouath dialog.
This means i cannot cancel this ...
1
vote
1answer
22 views
Why do I have to JSON.stringify before I .parseJSON a result set from Google+ API?
I just started playing around with the google+ API and have scoured the docs. It seems pretty straight forward. According to google, a call on their API returns json. Why then do I have to ...
0
votes
0answers
14 views
iOS app doesn't fetch same results as Foursquare
I've been wondering for quite a while, I'm using Foursquare's API to use within my iOS app.
It works wonderfully except that fetched results never matches those made by the Foursquare app itself.
I ...
0
votes
1answer
27 views
How do I get the SHA of the latest commit on a GitHub repository via jQuery?
I've been at this for several hours now and I have yet to find any useful information anywhere. I'm trying to use jQuery to get the latest commit of any GitHub repository from a single user to show up ...
0
votes
0answers
4 views
Exceed query limitation solution Facebook fql
I've found that fb have query limitation of 600 calls per 600 seconds, per token & per IP.
I query about 30,000 fql everyday,
i run this process on multiply machine with multiply fb apps to get ...
0
votes
1answer
19 views
Login to google with wordpress account
I have a site on Wordpress. I want to use few accounts with the same login and pass, like on Google. So when user login to my site, it will be also login to Google. How can I do that? Maybe You know ...
0
votes
0answers
10 views
Google Calendar API --> How can I make the useraccount from which I retrieve Events, variable?
I'm currently working with the Google Calendar API.
I retrieve a list of EVENTS from the user's calendar, but at the moment the account of the user is given in my code.
I wan't to make this variable ...
0
votes
0answers
9 views
facebook link preview generation
I would like to include facebook link preview on my page. I have a website which is registered with facebook app. I have an input and every time the user enters some url there, I would like to show ...
-1
votes
0answers
7 views
Royal mail (UK) tracking api [closed]
i been searching the web to check whether Royal mail has an API interface for tracking the parcel status using reference no, but couldn't find any. there is a previous qn here but couple of years old. ...
0
votes
0answers
18 views
Asp.Net APi LinkedIn 400 bad request
I was implementing Linedin Api. I generated APi key and Secret key and did all the steps as provided. I got an XML of my connections, that was fine but during this I was facing an error 400 Bad ...
-1
votes
0answers
17 views
Is it API version trouble?(use opencv in android)
I'm pool in English. plz understand :)
I create project android 3.0 version.
and my phone is android 2.1.1 version.
I try to apply houghline detect. It is very good at my phone. but, another phone ...
0
votes
0answers
10 views
In Google Charts, how can I color the subtituents of a province?
I'm new to Google Charts and from what I have researched, it uses the codes given by ISO 3166. I'm wondering how I can color the cities of a province given that they are not in the ISO 3166. Are there ...
0
votes
1answer
14 views
How to POST with base64 image in URL
I'm trying to figure out how I can do a PUT request to my backend, with in the URL a base 64 image and some other parameters.
this is the code I'm using:
NSURL *URL = [NSURL ...
0
votes
0answers
17 views
Chained delayed payment with multiple items
we start a little plattform in France for private rental. We want to use Paypal for payments.
In a beta-version, we use ExpressChackout API. Works great so far, but we need to pay renters ...
-2
votes
0answers
15 views
mobile recharge API integration
I want to develop java application to recharge mobile online.I have mobile recharge API provided by operator.Anybody konw how to integarte that API's with java application?
Thanks in Advance..
-1
votes
0answers
16 views
Zoomable fusion table map template by Derek Eder
I went through this site and it shows a good example of fusion table map using API. Is it possible to make the map zoomable to particular bounds when I select an option in dropdown list using the ...
1
vote
1answer
49 views
Writing a PHP API and an Android app
I have a shop project written with Zend Framework 2 and now I want to write an app for this project. I'm new to this whole Android thing (I wrote a few test apps, but no big project like this). So at ...
0
votes
0answers
7 views
Retrieve the app list of an user
I want to retrieve the app list of an user of facebook. Could I do it through api or fql? I notice there is an api called installed. What is it used for? Could I use it to achieve my aim?
0
votes
0answers
7 views
Retrieve apprequests I received
I want to retrieve the apprequests I received from my friends. I write my code as
$response= $facebook->api('me/apprequests');
But the problem I face is that the result I got is always ...
0
votes
0answers
20 views
limiting Tumblr API v2 return data possible?
I'm getting a tumblr feed like so:
api.tumblr.com/v2/blog/blahblah.tumblr.com/posts?limit=30&api_key=xyzabc
But it's returning a crapload of data with a whole bunch of junk I don't care about. ...
0
votes
1answer
17 views
Httplib2 : Processing Response String
import httplib2
h = httplib2.Http(".cache")
resp, content = h.request("http://example.org/", "GET")
When I follow the examples in urllib2 to make a GET request to an API, how do I deserialize the ...
0
votes
0answers
9 views
Building error
I'm trying to test this hid api for MAC in XCode by creating a project type "Core Foundation" just by importing the "hidapi/hidapi.h" library and replacing the "mac/main.c" files into the project. ...
0
votes
2answers
28 views
Twitter rate limit hit while requesting friends with ruby gem
I am having trouble printing out a list of people I am following on twitter. This code worked at 250, but fails now that I am following 320 people.
Failure Description: The code request exceeds ...
-1
votes
0answers
10 views
IOS compass with Google Maps API Javascript [closed]
How do I can to use ios compass with Google Maps API Javascript ?
I use this the Google Maps API Javascript and I don't know how enable the compass and to use.
Can You help me ?
Thank !
0
votes
1answer
16 views
How to fix rails api testing error?
I am new to creating an API with Rails and am trying to create a test.
require "spec_helper"
describe "/api/v1/iosapps", :type => :api do
context "view all apps" do
let(:url) { ...
0
votes
0answers
13 views
Yahoo API allows only 1 query
I have a problem.
I need a few Yahoo API queries for my wordpress plugin.
When I start it, I can post my OAuth Key and secret and verify it or start getting some content from it.
This process is ...
0
votes
0answers
30 views
Google API to change a Gmail account's password
I'm using asp.net and c# to create a webpage where a user can change his password from gmail, I'm using google_data_api but i cant find a method to accomplish this. i found this code searching but ...
0
votes
2answers
14 views
GET request inside POST API endpoint interferes with 'respond_with'
After reading Stored Android Accounts for Authentication of Rails + Devise Accounts I'm trying to setup a Rails 3 API endpoint that can verify an OAuth obtained token through a GET request to Google.
...
0
votes
1answer
111 views
Select target API in the Android Studio layout design preview
My application targets API 17 but the min Sdk version is the 8. In the layout design preview page I can se how my layout appears on an API 17 version, but if I click on the API selector drop down ...
0
votes
0answers
10 views
API for live account Tasks (Outlook.com Calendar)
Actually, I've setup my outlook.com account on MS Outlook. I wanted my tasks to be shown on my Windows Phone 7.8 device by categories. Tasks are synced with the WP device but as you know there are no ...
