New answers tagged api
0
I realized that the ssl flags require integers. this works.
c = Curl::Easy.new("https://capi-eval.signnow.com/api/documentsv2") do |curl|
curl.headers["Bearer"] = "XXXX"
curl.verbose = true
curl.use_ssl = 3
curl.ssl_version = 3
end
0
There's a good article about reducing overloading JSON response for Rails application.
Unfortunately the article on russian language, but Google Translator should helps with it.
Translation on en with Google translator:
http://translate.google.com/translate?hl=ru&sl=ru&tl=en&u=http%3A%2F%2Fhabrahabr.ru%2Fpost%2F152719%2F
Original (ru) ...
0
I think you're talking about single page applications, commonly known as SPA.
Basically what this concept means is you have let's say an index.html and inside that you have a section of each page defaulted to be hidden and via javascript and rest oriented services managing and handling the content of each section based on the users interaction.
The single ...
0
You also need to add
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
to your manifest. Osmdroid tries to cache the tiles and fails when there is no storage access.
0
Your AJAX call already specifies dataType: "json", so jQuery will already parse the returned JSON to a JavaScript object.
You should be able to drop
data = $.parseJSON(JSON.stringify(data));
altogether as data already is your desired object.
0
The following code will return an array of usernames. The vast majority of the code was written by the author of: http://workstuff.tumblr.com/post/4556238101/a-short-ruby-script-to-pull-your-twitter-followers-who
First create the following definition.
def get_cursor_results(action, items, *args)
result = []
next_cursor = -1
until next_cursor == 0
begin
t ...
0
Would this help?
$.getJSON("https://api.github.com/users/theinfection/repos", function(data) {
$.getJSON(data[0].commits_url.slice(0, -6), function(data) {
$('.lastcommit').text(data[0].sha);
});
});
In the initial request you get the repos, then take the repo you want and get it's commits. Of course, if you know your repo name already, ...
0
Had the same problem. And solved it by adding this in the RABL initializer
# config/initializers/rabl_init.rb
require 'rabl'
Rabl.configure do |config|
config.view_paths = [Rails.root.join('app', 'views')]
end
If you want to ditch this lineRabl::Renderer.json(@customers, 'api/v1/customers/index') just change to configuration to be config.view_paths = ...
0
I think you mean oauth, there are several plugins available, like WordPress Social Login.
0
If you are using Google Maps Android API v2 that's probably the reason why your project is not working. To get this working you must go through the following steps:
Download and configure Google Play Services from SDK manager
Google Play Services are part of the extras of Android's SDK. You can found it in the extras section.
Add google play services lib ...
1
You need to use a POST request as the maximum length of a URL is something like 2000 characters.
Here is a good SO question which should give you clues on how to implement the POST request.
1
If you're building your API in PHP assess first which framework you want to use. I've had success using Yii to build a quick REST JSON API. After getting to grips with Yii this article explains in detail the process of building a REST API: http://www.yiiframework.com/wiki/175/how-to-create-a-rest-api/
You have a few choices in terms of authentication and ...
1
try using a cursor: http://rdoc.info/gems/twitter/Twitter/API/FriendsAndFollowers#friends-instance_method (for example, https://gist.github.com/kent/451413)
0
Ok, I managed to do what I want. There is no category for VOD, you have to use nodeid as second parameter of search (but you still have to to provide a category first) :
$amazonEcs = new AmazonECS(AWS_API_KEY, AWS_API_SECRET_KEY, 'com', AWS_ASSOCIATE_TAG);
$amazonEcs->associateTag(AWS_ASSOCIATE_TAG);
...
1
Use json.loads():
>>> import json
>>> mydict = json.loads(content)
>>> print mydict
{u'total_results': 1, u'stat': u'ok', u'default_reviewers': [{u'file_regex': u'.*', u'users': [], u'links': {u'self': {u'href': u'http://localhost:8080/api/default-reviewers/1/', u'method': u'GET'}, u'update': {u'href': ...
0
I don't think that there is any problem with php continue, in fact I like how it behaves
Use continue 2; because continue will do the same as brake in the switch and the for, while, foreach, etc. loops will continue their course after coming out of the switch.
The following example will echo only 1, because I am breaking from the switch and the continuing ...
0
It seems like 17 is the only available API level for preview at the moment.
I have all the SDKs installed correctly and it appears the same as yours.
0
The example in the guide shows how you can create a new PlayerProfile object and associate it with a File in a single request. Since you want to update an existing User (and not create a new one), you'll need to use the Update REST API request format. Use PUT instead of POST, then specify which user you're referring to by appending the object id to the ...
0
I switched to the HTTParty gem which fixed the issue with the request overriding the respond_with.
I had to go back to the OAuth2 playground to figure out Google now requires an Authorization header too when requesting the user info.
This is what I ended up with:
def verify_token
token = params[:token]
response = ...
1
Test db is not ready. You need to run
rake db:migrate
rake db:test:prepare
0
Probably late answer but if it helps add more perspective.
I use RABL as the json presentation layer and tried to use that to output json errors to ios.
Example code in RABL:
object @submission
child :errors do |e|
e.full_messages.each do |message|
node(:message){message}
end
end
Now, logging NSError *error ...
0
respond_to :json
def verify_token
token = params[:token]
response = RestClient.get("https://www.googleapis.com/oauth2/v2/userinfo", { params: { access_token: token }})
if response.code == 200
data = JSON.parse(response.to_s)
@user = User.find_for_verfied_token_response(data.symbolize_keys)
render :json => @user.to_json
else
...
0
Here is an update to @Harkish's answer which works with what I assume to be the current version of MonkeyRunner:
import com.android.chimpchat.adb.AdbBackend;
import com.android.chimpchat.core.IChimpDevice;
public class MonkeyTest {
public static void main(String[] args) {
// sdk/platform-tools has to be in PATH env variable in order to find adb
...
0
Currently scores and schedules is for premium partners only, due to licensing agreements with the leagues. Future releases of the API will include opportunities for public developers to access that data.
Relevant page: http://developer.espn.com/docs/scores
0
To answer your question: No, you cannot send your credentials in the URL. It's doubtful that such a thing would retain the PCI compliance of your store.
You would need to send your user credentials (username and API key) via HTTP headers with something like CURL. Technically you can do this with AJAX but thats a huge security risk so you have to process the ...
0
You can include a link/URL in your status update in the same way that you have included the other words (Hello Nettuts+).
However, you cannot add pictures in this manner - you will need to use the statuses/update_with_media endpoint as opposed to the statuses/update endpoint that you are using in your existing code. You can learn more about how to do this ...
0
Learn to debug your code:
your XML above is not valid --> http://www.xmlvalidation.com
make sure $load_api contains what you think it does by using var_dump($load_api);
make sure PHP's error reporting is at its best level, search SO for how to do that.
your XML has multiple <artist> nodes, so $artists has to be set differently.
you echo $shows ...
0
You're looking through the header, where you should be looking at the content. Return $content instead in your function and then you can parse out the response:
function get_web_page( $url ) {
$options = array(
CURLOPT_RETURNTRANSFER => true, // return web page
CURLOPT_HEADER => false, // don't return headers
...
0
I'm not sure where the JSON string is. But let's say it's the $pnr variable.
$json = json_decode($pnr, true);
$train_no = $json["data"]["train_number"];
$train_name = $json["data"]["train_name"];
Updated:
If you don't need all the other things you can do something like the following:
$npr = file_get_contents(url);
and then run the code above.
1
You can add Deauthorise Callback URL by Navigating to Settings > Advanced section of your application. Whenever a User Deauthorises your Facebook app, Facebook performs a HTTP POST of signed request to your URL. You may use the field user_id to determine which User has deauthorised your app.
1
Actually, I would do the following:
Add a date to his last log in to your site.
Have cron job check for old, unused accounts.
Send an email to the user's email address (or Facebook message mail) telling him his account is due to expire soon.
Delete account from database.
0
First initialize(); is called and sets the position to:
center: new google.maps.LatLng(50.89266,3.47237)
But right after that you call this:
var BW = new google.maps.LatLng(50.892726, 3.471283);
map.panTo(BW);
So BW is your new center. Is this what you meant?
1
The SVG specification has a DOM chapter From there you can navigate to the different DOM interfaces e.g. basic DOM.
The Mozilla project is also attempting to document the SVG DOM. It has specifica documentation on many interfaces e.g. SVGLengthList and is trying to document what UAs support which DOM methods but that information is currently rather ...
0
I write my own HostBackup Faraday middleware for this case.
You are welcome to use it! https://github.com/dpsk/faraday_middleware
0
Update as of May 2013. Install Adobe Reader for free on an Android phone. When opening a pdf document with hyperlinks, choose to open with Adobe Reader and you should have no trouble accessing the links.
0
We are using GeoDataSource drop down list to generate city names by countries and states, handy but it is not a free version. Maybe you can have a look on their tutorial or sample codes at http://www.geodatasource.com/software/world-major-cities-2013-drop-down-list-source-codes.
0
Nevermind, it was an issue with my httpd.conf file
I had
All is good now.
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all #this WAS None. Had to change it to all
0
Finally found a really good website to do this: Apiary. Does exactly what I needed, plus a few other awesome things like creating documentation, providing collaboration tools, etc.
1
Several API vendors are going with 503 to indicate that you are going above the rate limits specified as per the API Terms of usage.
Amazon EC2 and various Google APIs are doing the same. Try a Google Search on "503 rate limit" and you will find a lot of APIs going with that. As long as you provide the detailed message and your API documentation clearly ...
1
You are correct in that using Input is actually referencing the current request and not your newly created request. Your input will be available on the request instance itself that you instantiate with Request::create().
If you were using (as you should be) Illuminate\Http\Request to instantiate your request then you can use $request->input('key') or ...
1
With your code, the results of the way query are replaced by the results of the recursion. Therefore, you should have the (usually untagged) nodes of the amenity ways in your output, but not the ways themselves.
Putting these in a union together, however, means that both the ways and their node end up in your output:
<osm-script>
<union>
...
4
Upon further reading, found 429 Too Many Requests (RFC 6585).
429 Too Many Requests
The 429 status code indicates that the user has sent too many
requests in a given amount of time ("rate limiting").
The response representations SHOULD include details explaining the
condition, and MAY include a Retry-After header indicating how long
to ...
1
There is no appropriate status in my opinion. Twitter made up the 420 enhance your calm status. As long as you document it there is no problem.
In my opinion a 403 Forbidden, even if you specify the reason, the RFC says that the request SHOULD not be repeated. This makes me think of that request being rejected as long as I do not modify it.
1
NFLdata.com has NFL scores and stats, I'd definitely check them out.
They have an API (REST web service) that is built on XML/JSON and it includes NFL game scores, stats, etc...
They have a ton of player stats and a develop portal with pretty solid documentation.
https://developer.nfldata.com/
0
You have to use getProperty method - an example to retrieve city & country is -
user.getLocation().getProperty("name");
Check the link, it says -
GraphUser Provides a strongly-typed representation of a User as defined by the Graph API. Note that this interface is intended to be used with GraphObject.Factory and not implemented directly.
This link has ...
1
David, you currently can't delete a stored credit card. However, stay tuned for some credit card storage updates that are coming soon.
0
Just like the docs say, when you use intent=browse, Foursquare doesn't "only [find] Venues closest to a point." When you use intent=browse with a ll/radius, imagine this as setting up a region and asking Foursquare for the "best" results from this region. It is not saying "find me the results starting at this ll growing until the radius."
In general, ...
0
try
$user_profile = $facebook->api('/me');
print_r($user_profile)
1
The JSContext object has a locals attribute which is a dictionary of the context's local variables. So, you want ctxt.locals["numOne"] and so on.
Another way to do it: eval() has a return value, which is the value of the last statement evaluated. So you could also execute a JavaScript statement that evaluates the variables you're interested in. In this case ...
0
Read this:
http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-fire
editor.fire( 'MediaEmbed', data);
I think that this is the structure that your data needs to have:
var data = {title : 'Embed Media',
minWidth : 550,
minHeight : 200,
contents :
[
{
...
Top 50 recent answers are included




