FaceRect

फ़्री
द्वारा apicloud | अपडेट किया गया 21 days ago | Media
लोकप्रियता

0.4 / 10

लेटेंसी

12ms

सेवा का स्तर

0%

Health Check

N/A

सभी चर्चाओं पर वापस जाएं

python sample code returns TypeError

Rapid account: Plackr
plackr
10 years ago

Python 2.7.2 (default, Jun 20 2012, 16:23:33)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type “help”, “copyright”, “credits” or “license” for more information.

import unirest
response = unirest.get(
… “https://apicloud-facerect.p.mashape.com/process-url.json?url=http%3A%2F%2Fapicloud.me%2Fassets%2Ffacerect%2Fimage1.jpg&features=false”,
… {
… “X-Mashape-Authorization”: “bZqJj1YdVP2bLSNa8zY30vvuucRC30sx”
… }
… );
Traceback (most recent call last):
File “<stdin>”, line 4, in <module>
TypeError: get() takes exactly 1 argument (2 given)

Rapid account: Apicloud
apicloud Commented 10 years ago

Hi there!

Thanks for you interest in our API! Probably you have already solved the problem, but we’ll post this comment anyway in case anybody else will face the same issue:

Unfortunately, sample code snippets are generated automatically by Mashape and are currently outdated. The correct snippet should look like this:

import unirest

response = unirest.get(
https://apicloud-facerect.p.mashape.com/process-url.json?url=http%3A%2F%2Fapicloud.me%2Fassets%2Ffacerect%2Fimage1.jpg&features=false”,
headers = {
“X-Mashape-Authorization”: “<Your Auth Key>”
}
);

For the most recent docs on Unirest-Python please visit https://github.com/mashape/unirest-python

Hope that helps!

चर्चा में शामिल हों - नीचे टिप्पणी जोड़ें:

नई टिप्पणियाँ पोस्ट करने के लिए लॉग इन / साइनअप करें