-
Notifications
You must be signed in to change notification settings - Fork 92
Implementation Guide
Stanislav Idolov edited this page May 6, 2019
·
21 revisions
To provide access to the Adobe Stock API it's required to implement authentication mechanisms:
-
API Key
should be enough for images search and preview download. How to configure -
oAuth2
for access to the licensed content. Documentation
Detailed information about webapi endpoints that should be introduced described on the Web API page.
To make at least search requests Adobe integration should be created. Provided API access information should be stored in Magento via standard configuration framework.
-
x-api-key
- required field for any request (can be obtained from the Adobe integration configuration) -
x-Product
- can be obtained from the Adobe integration configuration (integration name) -
API url
- can be customized for testing purpose (send requests to the stub service)
- Usage of Magento UI component is mandatory for the project.
- Adobe Stock Image Integration should be implemented as default Magento slide out panel.
Useful information about Magento UI components and how to start development with them you may find in our UI Components Guide on the DevDocs
- The usage of strict return types and scalar type hinting is required in new code.