Solved!
Go to solution
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
January 2019
January 2019
import requests
r = requests.post('https://sandbox.api.visa.com/merchantlocator/v1/locator',
verify = ('DigiCertGlobalRootCA.crt'),
cert = ('cert.pem','key_e00282f5-6719-4770-8d73-f8fb00d8236a.pem'),
headers = headers,
auth = ('USERIDXXXXXX', 'PASSWORDXXXXX'),
data = body)
Solved! Go to Solution
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
January 2019
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
January 2019
January 2019
Re: How can I connect with VISA APIs with Python?
Download the python sample code from Visa Developer Portal Dashboard --- > Sample Code section and use the same in order to connect to Visa APIs.