FaceRect

ÜCRETSİZ
Taraf apicloud | Güncelleyen 21 день назад | Media
Popülerlik

0.4 / 10

Gecikme

12ms

Hizmet Düzeyi

0%

Health Check

N/A

Tüm Tartışmalara Dön

python sample code returns TypeError

Rapid account: Plackr
plackr
10 лет назад

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 лет назад

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!

Aşağıya yorum ekleyerek tartışmaya katılın:

Yeni yorumlar göndermek için giriş yapın / kaydolun