Tagged Questions
The web-api tag has no wiki summary.
21
votes
10answers
5k views
Some good example of RESTful web api? [closed]
Can you suggest some good example of some real-world and really well-done REST web api?
15
votes
8answers
4k views
Best Engineered REST APIs? [closed]
In your opinion what are examples of good REST API implementation when evaluated based on
consistency with the REST philosophy
compliance with web standards
just plain good software engineering
...
5
votes
4answers
141 views
Freely Available Web Services/APIs
I'm building some Silverlight applications in my spare time, and I wanted find some freely available web services or APIs that I can call. Any suggestions?
4
votes
1answer
531 views
How to get values for an android application
I am developing an android application based on web services. How can I run query (server using php and MySQL) based on the item clicked and get the result from the web. I also want to show some ...
3
votes
1answer
65 views
Can I use '|' in a URL?
I'm a little confused by this. I notice that some web APIs use the | character (eg the mediawiki api - see "action=opensearch", the parameter "namespace" says you separate items with |).
However I ...
3
votes
6answers
527 views
Is being RESTful that important?
I'm working on a web based application which uses a JSON over HTTP based API to communicate between the server and the client. The goal being that multiple clients can be developed with different ...
2
votes
3answers
592 views
Best way to handle authentication on .NET WCF Web API
I'm mildly familiar with DotNetOpenAuth and OAuth in general, but in terms of Web API development, what is the best way to lock down a web service in terms of the following criteria:
Ease of ...
2
votes
3answers
315 views
Using uTorrent Web API via .NET
I'm trying to get list of torrents from uTorrent using Web API. Getting required token goes O.K.:
WebClient client = new WebClient() { Credentials = new NetworkCredential(UserName, pass) };
...
1
vote
3answers
92 views
Python: what is the correct way to handle gzipped json?
I've found this snippet, which seems to do the job, but I can't understand why it uses StringIO. Isn't f already a file-like object? What is the need to read it, then make it look like a file again, ...
1
vote
3answers
302 views
http post on a WCF web api service using restsharp
Im trying to post some information in my api which is programmed using WCF Web Api. In the client, I'm using restsharp which is a rest client for restful services. However, when I try to post adding ...
1
vote
1answer
329 views
HttpOperationHandlerFactory and InputParameters issue
I've written a custom OperationHandler for my WCF WebAPI project as follows:
public class AuthenticationOperationHandler : HttpOperationHandlerFactory
{
protected override ...
1
vote
3answers
390 views
Add service reference to WCF Web Api
I've got an MVC solution that hosts a few routes for Web Api services. In some situations I will call these from javascript with a simple http get. In others I want to call them from some .NET code, ...
1
vote
4answers
266 views
Android Dynamically Load ListView
I am adding item in ListView using ArrayAdapter.
First display 15 item in the ListView.
Scroll to bottom it must fetch and display next 15 content from web API.
Give some idea.
1
vote
2answers
510 views
Google Alerts web API for Python?
Google web APIs have a Python library. Google Alerts has an email and an RSS feed.
Does anyone know of an automated way to add Google Alerts through a web API in Python? That is, without clicking.
...
1
vote
3answers
543 views
Most RESTful Authentication Approach - Who is using it?
Duplicate: this must be a duplicate of one of the questions that come up in the following search: http://stackoverflow.com/questions/tagged/rest+authentication. Please close it as a duplicate if you ...
0
votes
0answers
57 views
µTorrent Web API's token system blocks me from making requests
i'm trying to test sending a magnet url to utorrent before i go ahead and finish writing my Android app.
first i fetch the token like the docs say
byte[] encodedLogin = (user.getUsername() + ":" + ...
0
votes
2answers
51 views
how can i measure stress testing for the iPhone app?
how can i measure stress testing for the iPhone app ?
i need stress testing not performance testing, for example 100 users access the database of the app which is on the server at the same time.
any ...
0
votes
1answer
43 views
How to get URIs by using Falcon RESTful API
I m using FALCON semantic search engine RESTful API & wrote this program
But not getting the results that should respond from Search engine.Please look at code & help me.
package ...
0
votes
1answer
84 views
Do my model objects have to have the same name as my WCF Web Api DTO objects when using restsharp?
I have set up a WCF Web Api service, and everything was working fine, until I started using DTOs to expose data.
Previously I had on the WCF Service my model object which was called Game.cs:
public ...
0
votes
1answer
84 views
Easiest path for Microsoft Web API to generate WSDL
Web API, unlike some of the older Microsoft web service technologies, does not generate WSDL documentation automatically.
What's the easiest way for it to automatically generate (or quickly manually ...
0
votes
2answers
135 views
DataContract Attributes not being sent in responses
I have had it where the name/namespace/other attributes show up when sending a request, but now they have disappeared and cant figure out for the life of me what changed... I am trying to utilize the ...
0
votes
0answers
80 views
File API handling concurrent writes
Using the HTML5 File API to write to files works real fine with Chrome 14.
But using it in a Chrome extension that uses both a background and a page html pages do some concurrent writes.
These ...
0
votes
0answers
49 views
How to access various web apis of shopping sites
I am going to create a shopping website which will be getting the product information from various web api like amazon, yahoo etc. I want to know how to best implement the rest requests that I will be ...
0
votes
0answers
514 views
Does Orbitz.com provide commercial APIs for integration?
I'm interested to know if Orbitz.com provides any commercial APIs to integration with their services. Anyone has related information?
So far, not much info mentioned in Orbitz.com.
0
votes
1answer
100 views
How to store non-standard web authentication?
In the web API my app communicates with, the authentication process is designed in the following way:
The user enters the name of the group that he/she belongs to.
The server sends the list of group ...
0
votes
1answer
101 views
how to raise this exception
from shodan import WebAPI
SHODAN_API_KEY = "e4qirfk5UuwzgXEFUqIfyl5LSg5nyrzQ"
api = WebAPI(SHODAN_API_KEY)
host = api.host('98.111.2.190')
# Print general info
try:
print """
IP: ...
0
votes
2answers
39 views
limiting a search (python)
from shodan import WebAPI
SHODAN_API_KEY = "e4qirfk5UuwzgXEFUqIfyl5LSg5nyrzQ"
api = WebAPI(SHODAN_API_KEY)
results = api.exploitdb.search('PHP')
print 'Results found: %s' % results['total']
for ...
0
votes
2answers
111 views
How to represent boolean-type fields in Web API results
I am designing a REST Web API, and I am unsure of how to model certain parts of the response.
I think an example of the output will be most illustrative, so here it is.
This:
<packages>
...
0
votes
2answers
62 views
Get page based on url [API]
Does anybody know some web-based API that provides you page info ( title, etc ) from an url and argument?
Point here is that I don't want to load whole page, but just to receive json ( preferably ) ...
0
votes
1answer
75 views
What data/functionality would you want to have available through a web API that isn't available today?
Have you ever looked for a web API for certain data or functionality, only to find that there isn't an API available to meet your needs, or that the APIs that are available are inadequate for some ...
0
votes
1answer
278 views
How to mock web api in unit test
guys!
Now my team working on a client application(c#), and I need to call some web apis that returns xml messages.
I want to test the methods that calling these web apis, I know I should use mock ...
0
votes
1answer
47 views
What's the simplest way to do authentication with a web API?
I've got a web API that provides data to users without authentication (the website lets users post data, after they've logged in using traditional cookies & sessions). Someone wants to develop an ...
0
votes
5answers
941 views
ISBN -> bookdata Lookup to fill in a database
Ok, I wanting to database a small library.
I've only had limited experience with databases, and none with querying from a webserver.
I'm going to want to retrieve information like title, Publisher, ...
0
votes
1answer
86 views
does anyone know ebay getDeals() api call
I'm about to start developing a small ebay based application. I saw the following function in the ebay API documenation getDeals (here https://www.ebaypartnernetwork.com/files/hub/en-US/api.html), ...
-1
votes
3answers
111 views
How to HTTP GET while sending vars and retrieve XML output using PHP
I'm trying to use this API: www.cpsc.gov/cpscpub/prerel/api.html
Documentation: www.cpsc.gov/cpscpub/prerel/requirements.pdf
Here is the location calls are to be sent, which also includes sample ...