0
votes
1answer
12 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
1answer
13 views

django-tastypie REST update or delete resource with username

Hi there i am using django tastypie and i can update (PUT) a resource if i provide an id like this : http://mysite.com:8000/api/v1/user/1/ But my question is, can i do an update without the id ...
0
votes
1answer
13 views

Removing the list endpoint from a resource on tastypie

I have a Resource on my api that always return the logged-in user. The resource is read-only. I wanted the list uri to act as the detail uri, and remove the detail urls. So, /api/v1/user/ would ...
1
vote
2answers
34 views

PUT request to django tastypie resource not working

i'm trying to do a put request to my django tastypie resource in order to update user info. Up to now, i can make post request but put is not working. In my api.py i have this: class ...
1
vote
1answer
19 views

Authenticating Developers with APIKey and Users with BasicAuth/OAuth

I've looked around for this but can't seem to find a canonical answer. I'm trying to follow best practices. Maybe I'm thinking of it the wrong way. I'm thinking of my API users as two different ...
1
vote
1answer
60 views

How do I do a basic REST Post with Requests in Python?

I am having trouble using Requests The API I am testing indicates the parameter device_info to be POSTED in the message body. It also says that the device_info as a form field. In all the ...
0
votes
0answers
34 views

Django-Tastypie Return Multiple Object Types In A ModelResource Response

I'm trying to return multiple object types in a response. Specifically I would like to return the query that produced these results to the client. This is especially useful in say mobile applications, ...
0
votes
1answer
27 views

How to access nested rest api objects via URL

I have a REST webservice which returns the following output while accessing json REST url "http://example.com/api/v2.0/deliverable/?numb=339&limit=1&order_by=-id&format=json"; Backend is ...
6
votes
2answers
124 views

How is a REST response content “magically” converted from 'list' to 'string'

>>> print type(a) <type 'list'> >>> response.content = a >>> print type(response.content) <type 'str'> Could you explain me this "magic?" How is a converted ...
-2
votes
1answer
63 views

Transform Python code for REST in PHP [closed]

Once more, I need your help. My client wishes to use a REST server for some data encryption. I have been given a code slice in Python that works. (I don't know Python so I'm gonna trust his word on ...
-1
votes
1answer
63 views

Python requests: How to PUT a string in body?

I need to PUT data from a string (no dict) as the body of the call to a REST API. When I call r = requests.put(url, data = string) then I can see in r.request.body after this call that it is None. ...
1
vote
1answer
39 views

Pyramid read http data

APIURL ='http://localhost:6543/api/patches/alice_8b84090712bce46e15a8107839cefe/e5678' data = { 'patch_id' : 'e5678', 'queue_id' : 'alice_8b84090712bce46e15a8107839cefe', } response = ...
1
vote
2answers
68 views

Django Tastypie add Content-Length header

I am quite new in Django development. I have a Resource and Model: Model class Player(models.Model): pseudo = models.CharField(max_length=32, unique=True) ModelResource class ...
1
vote
2answers
74 views

Flask: How to store credentials in session and retrieve them?

I am working on a project where each of my REST endpoints needs to be authenticated. An example is @login_required def get_transactions(self): pass I have a User model which looks like class ...
1
vote
1answer
91 views

Django Tastypie Many to Many (self) field update using a PATCH or PUT request?

I have this model: class UserSub(models.Model): user = models.OneToOneField(User, related_name='userSub') amigos = models.ManyToManyField('self', null=True) title = models.TextField() ...
0
votes
0answers
25 views

Streaming/Partial Results Through Tastypie

Is there a way to stream/return partial results through tastypie (it seems to be possible in Django in general). I have an API that needs to do a bunch of requests to external services in order to ...
2
votes
1answer
58 views

Python Dynamically Generate HTML Page on GAE

On GAE, I need to make some REST calls to a PiCloud server, then create an output page based on PiCloud return values. However, it will take several minutes for PiCloud to process the model. Thus I am ...
0
votes
1answer
152 views

What is the best way to send a file via base64 encoding over HTTP

In python there is a nice library 'base64', with this module it's possible to encode/decode files based on the filename and the content. I'm developing an API which has the functionality to upload a ...
0
votes
1answer
81 views

How to handle Salesforce REST error response in JSON (Python)

I was just wondering how to correctly handle Salesforce error responses for an portal I'm developing. Or more generically, just how to handle a JSON error response. For instance, if I queried a ...
0
votes
0answers
84 views

Django REST Framework different depth for POST/PUT?

I am using Django REST Framework to create an API for my web app. I have a class 'Comment', that has depth=2 set in the Meta class. This works great when GETing the Comments. When I try to send a POST ...
0
votes
1answer
58 views

What is RESTful way to access resources attached to different resource [closed]

My data mode looks like User has many Transaction. Both User and Transaction are different tables in database I have REST endpoints as User Endpoint GET /users/uuid # to get information about ...
0
votes
1answer
35 views

Using client certificate with python requests

I would like to use a client certificate for the authentification at my REST-Service. After testing the configuration with my generated certificates in Firefox I would say, that my configuration is ...
0
votes
1answer
30 views

Converting and Unifying API data in Python

I'm trying to pull similar data in from several third party APIs, all of which have slightly varying schemas, and convert them all into a unified schema to store in a DB and expose through a unified ...
1
vote
1answer
77 views

securing REST endpoints with HTTP Digest authentication

I am developing a project in Python using Flask which will have endpoints as @app.route(/transaction) def get(request): ... @app.route(/transaction) def post(request): ... Also, I would ...
0
votes
2answers
100 views

Friendly URL for a REST WebService with CherryPy

I'm making a RESTful WebService using CherryPy 3 but I encounter a problem : I want to be able to answer requests like : /customers/1/products/386 meaning I want all the product with ID 386 of the ...
3
votes
1answer
84 views

oauth2 library and Netflix API return None access token

I have been working with the protected authentication of the netflix api and the python oauth2 library. I have no problem making signed requests, however, to allow users to sign in using their netflix ...
0
votes
1answer
188 views

Python Requests library GET/POST gives ConnectionError: HTTPConnectionPool with proxy [closed]

I'm using the Python library Requests to write an API wrapper for my company's server software. I'm writing a test script using Python 2.7 on Windows 7 64. We use a proxy to connect to my work ...
0
votes
1answer
61 views

Put this request with Python httplib

I want to put a request to HDFS REST API. It works in the RESTClient. But it failed when i translate it to Python edition( python httplib). And i can't use this in Curl for some reason. Anybody ...
1
vote
1answer
107 views

In Flask how can I use the secure session to authenticate user with curl?

I am building a RESTful application with Flask which will use sessions to track the logged in user. Here is the login code which I adapted from this Flask tutorial @mod.route('/login/', ...
0
votes
0answers
40 views

How to build RESTful API for django.contrib.comments?

I have a Generic Relationships in tastypie and incorporated the same in my resource for django.contrib.comments.models.Comment My resource looks like this. It works fine for GET without the generic ...
1
vote
1answer
32 views

Get 404 error when using tastypie filtering

I'm trying to use tastypie filtering but when I try to get a resource through filtering I receive a 404. code class UserResource(ModelResource): class Meta: queryset = ...
0
votes
1answer
116 views

cherrypy file upload combined with requests post request

I'm having a hard time combining a python requests post request with a cherrypy server in order to upload a file. Here's what the server side code inside the cherrypy server looks like: ...
2
votes
1answer
112 views

Does only one Python interpreter execute multiple concurrent scripts?

I have a Python script that sends 4GB worth of data to a server in 10MB chunks using REST API. No matter how many of these scripts I invoke concurrently, I get exactly the same overall throughput ...
6
votes
1answer
187 views

RESTful API and Google Analytics

I'm running an RESTful API with Python (Flask). I want to be able to track: which requests have been made when did those requests happen how long did it take to send the response I want to use ...
1
vote
1answer
46 views

Adding REST resources to database. Struggling to loop through enumerated list and commit changes.

I'm trying to extract data from an API that gives me data back in JSON format. I'm using SQLalchemy and simplejson in a python script to achieve this. The database is PostgreSQL. I have a class ...
1
vote
1answer
70 views

Equivalent of @Named API parameter in Python

Is there any way to used named method parameter in Python - corresponding to this Java example: @ApiMethod( name = "foos.remove", path = "foos/{id}", httpMethod = HttpMethod.DELETE, ) ...
0
votes
0answers
252 views

Threaded Application adding Rest api with flask

I've created an application which has a main loop which runs continuously. This loop is started using a thread. Now I want to add a REST Api around this application using Flask. So basically I should ...
-1
votes
1answer
36 views

How can I build and test a REST API to spec if I don't have access to the database it's specced to? [closed]

I need to write a REST API (I'm writing it in Python, for what it's worth) that GETs, POSTs, and PUTs to a database - the only problem is the database doesn't exist, or I don't have access to it. How ...
1
vote
2answers
59 views

Django-tastypie - how to include choices?

I have a model field like this location_state = models.CharField(max_length=255, null=True, blank=True, choices=STATE_CHOICES) Its value is returned by tastypie, but for rendering a listbox a list ...
1
vote
1answer
199 views

Python micro-framework for RESTful applications? [closed]

Previously I have been using web2py, it's quite good but a little heavy for my purposes. Basically I am seeking a Python microframework with: Automatic no-arg function -> controller (endpoint) ...
1
vote
1answer
124 views

POSTing to AWS S3 Signature Mismatch Error

This is my form <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> </head> <body> <form ...
0
votes
1answer
46 views

Django Restframework - How to handle foreignkey relations in a put request [closed]

I'm developing an app for some tests and their results and want to provide a restful service. First, here are my models: class Test(models.Model): name = models.CharField(max_length=200) ...
2
votes
2answers
175 views

Does SessionAuthentication work in Tastypie for HTTP POST?

I am able to do GET to work with SessionAuthentication and Tastypie without setting any headers except for content-type to application/json. HTTP POST however just fails even though the Cookie in the ...
2
votes
2answers
83 views

OAuth to authenticate my app and allow it to access data at Google App Engine

I have a web server at Google App Engine and I want to protect my data. My mobile app will access the server to get this data. The idea is with OAuth authenticate my app, when it requests some data ...
0
votes
0answers
44 views

Restful API for a git-versioned wiki

I'm trying to design a URL scheme for a wiki that has the following properties: Markdown syntax pages page sections (defined by header structure) git-versioned using pygit2 I have to following ...
1
vote
1answer
182 views

How to add data to tastypie resources in regular django views

I am running into a problem trying to include tastypie resources in a larger json response in a regular django view. I would like to have the view return something like this (based on a queryset ...
1
vote
1answer
130 views

Flask User Management : How to make Stateless Server using better authentication ways?

I have been reading at multiple places and it is suggested that the Web Servers should be Stateles with share nothing architecture. This helps them scale better. That means each request has all the ...
1
vote
3answers
588 views

How to achieve Python REST authentication

I am a newbie and I want to do the following I have service endpoints like @login_required @app.route('/') def home(): pass @login_required @app.route('/add') def add(): pass @login_required ...
0
votes
2answers
94 views

Convert python API example to PHP [closed]

I need to connect to a RESTful API. The only example the company gave me to connect to their API is a example in Python. I do not understand the language but am comfortable with PHP. Is there a way I ...
1
vote
0answers
77 views

Why does this not transition a jira to resolved?

updated_issue = jira.transition_issue(origin_issue.key, '5', {'id': 'Resolution', ...

1 2 3 4 5 7