Authentication phase
Each call requires an authentication based on the HTTP Basic Authentication method.
This method uses the Authorization HTTP header consisting of the word Basic followed by a string encoded in base64 containing a username and a password separated by a colon (:).
- The username is the shop identifier, for example: 28478261
- The password is defined in the
Merchant Back Office : for example testpassword_HDBz5YpANEajG4DwYSmkQDNM9lzGiuvrhY9f6G9HEm5do.
The username and password are available in the
PARAMETER | Description |
---|---|
User | Username for building the header Authorization string. |
Test password | Password allowing to build the Authorization header string for test transactions (with test cards). |
Production password | Password allowing to build the Authorization header string for production transactions (with real cards). |
How to build the “Authorization” HTTP header
- Create a string presented asusername:password
61881992:testpassword_q4JtCk2nuiMsl2hi1uU394oqQ5dB1sOoMMaS4k8SaiY00
- Encode the obtained chain in base64
Njk4NzYzNTc6dGVzdHBhc3N3b3JkX0RFTU9QUklWQVRFS0VZMjNHNDQ3NXpYWlEyVUE1eDdN
- Add the “Authorization” header to your request containing the word “Basic” followed by the string encoded in base64:
Authorization: Basic Njk4NzYzNTc6dGVzdHBhc3N3b3JkX0RFTU9QUklWQVRFS0VZMjNHNDQ3NXpYWlEyVUE1eDdN
In PHP, the Authorization header will be calculated as follows:
$header = "Authorization: Basic " . base64_encode($username . ':' . $password);
The full HTTP request will look like this:
/doc/en-EN/rest/V4.0/api/kb/authentication.html
https://github.com/lyra/rest-php-examples/blob/master/www/SDKTest.php#L16-L26
https://api-sogecommerce.societegenerale.eu/api-payment/V4/Charge/SDKTest
{ "value": "my testing value" }
Useful links
For more details on implementation in different languages, see the following Gitub gists.