Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exemplo de uso de MarketPlace.request_verification #5

Open
rodolphopivetta opened this issue Sep 15, 2016 · 3 comments
Open

Exemplo de uso de MarketPlace.request_verification #5

rodolphopivetta opened this issue Sep 15, 2016 · 3 comments

Comments

@rodolphopivetta
Copy link
Contributor

@Arenhardt você pode por favor me dar um exemplo de como enviar arquivos no método MarketPlace.request_verification?

Obrigado desde já.

@Arenhardt
Copy link
Contributor

@rodolphopivetta a API utiliza o pacote requests como base. Segue a documentação do mesmo para envio de arquivos: POST a Multipart-Encoded File

@rodolphopivetta
Copy link
Contributor Author

rodolphopivetta commented Sep 15, 2016

Acredito que a implementação desse método que citei não está de acordo com a documentação que você citou.

In [1]: from iugu import MarketPlace

In [2]: m = MarketPlace()

In [3]: data = {'data': {'key': 'value'}, 'files': {'id': ('file1.txt', open('/tmp/file1.txt')), 'cpf': ('file2.txt', open('/tmp/file2.txt'))}}

In [4]: data
Out[4]: 
{'data': {'key': 'value'},
 'files': {'cpf': ('file2.txt',
   <open file '/tmp/file2.txt', mode 'r' at 0x7fa9bea2c4b0>),
  'id': ('file1.txt', <open file '/tmp/file1.txt', mode 'r' at 0x7fa9bea2c9c0>)}}

In [5]: m.request_verification('id', data)
TypeError: <open file '/tmp/file1.txt', mode 'r' at 0x7fa9bea2c9c0> is not JSON serializable

Se concorda comigo posso ajustar para que funcione de acordo com a documentação do requests

@Arenhardt
Copy link
Contributor

Olá @rodolphopivetta sim claro. Pode criar a implementação e realizar um pull request.

Att

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants