1

Someone could show me how can I use python's boto library for an amazon FPS transaction on which I'm the caller and the recipient? Sadly this exelent documentation doesn't mention

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
jdinunzio
  • 1,506
  • 1
  • 11
  • 26

2 Answers2

3

While the examples there are pretty minimal, boto provides pretty excellent API documentation, and it looks like FPS is no exception. The fps sub-package has its own section.

Mark Chackerian
  • 21,866
  • 6
  • 108
  • 99
blinsay
  • 1,082
  • 8
  • 6
2

You should have a look at the Amazon-FPS-specific code for django-merchant.

This code uses boto, and you can see examples of opening the fps connection, making a purchase, and making a credit. (Or you could just download and use django-merchant.)

Mark Chackerian
  • 21,866
  • 6
  • 108
  • 99