Api in magento 2

Post on 16-Apr-2017

187 views 1 download

Transcript of Api in magento 2

1

API in Magento 2: what you can and you can't do

Andra lungu @iamspringerin

2

Who Am iAndra Lungu - @iamspringerin

Magento Developer @Bitbull_IT

3+ magento development 3+ .net/java development

Andra lungu @iamspringerin

3

WhY

ERP

SHOPPING APP

CRM CMS

Javascript widgets

WAREHOUSE

Andra lungu @iamspringerin

4

API in Magento 1Supported Protocols

● XML-RPC

● SOAP V1

● SOAP V2 since M1.3, WS-I compliant since M1.6

● REST since M1.7 with less business logic then others protocols *

Authentication:

● API user with assigned roles similar to ACL roles

● * 3-legged OAuth 1.0a

Documentation

● http://devdocs.magento.com/guides/m1x/api/soap/introduction.html

● http://devdocs.magento.com/guides/m1x/api/rest-api-index.html

Andra lungu @iamspringerin

6

AUTH magento2User type

● Administrator or Integration

● Customer

● Guest user

Authorized resources. Example if authorized for the Magento_Customer::group resource, they can make a GET /V1/customerGroups/:id call.

Resources with anonymous or self permission.

Resources with anonymous permission.

Andra lungu @iamspringerin

7

AUTH magento2 acl.xml permissions to access the resources

…...<acl> <resources> <resource id="Magento_Backend::admin"> <resource id="Magento_Backend::stores"> <resource id="Magento_Backend::stores_settings"> <resource id="Magento_Config::config"> <resource id="Magento_Customer::config_customer" title="Customers Section" translate="title" sortOrder="50" /> </resource> </resource> <resource id="Magento_Backend::stores_other_settings"> <resource id="Magento_Customer::group" title="Customer Groups" translate="title" sortOrder="10" /> </resource> </resource>……….

Andra lungu @iamspringerin

8

AUTH magento2webapi.xml reference the permission needed for each api resource

<route url="/V1/customers/:email/activate" method="PUT"> <service class="Magento\Customer\Api\AccountManagementInterface" method="activate"/> <resources> <resource ref="Magento_Customer::manage"/> </resources> </route> <route url="/V1/customers/me/password" method="PUT"> <service class="Magento\Customer\Api\AccountManagementInterface" method="changePasswordById"/> <resources> <resource ref="self"/> </resources> <data> <parameter name="customerId" force="true">%customer_id%</parameter> </data> </route> <route url="/V1/customers/:customerId/password/resetLinkToken/:resetPasswordLinkToken" method="GET"> <service class="Magento\Customer\Api\AccountManagementInterface" method="validateResetPasswordLinkToken"/> <resources> <resource ref="anonymous"/> </resources>

Andra lungu @iamspringerin

9

OAUTH 1.0a based auth● Requires implementation of the protocol on client side

● Add integration in the admin area and activate it

Andra lungu @iamspringerin

10

Token based authcurl -X POST "https://magento.host/index.php/rest/V1/integration/customer/token" \ -H "Content-Type:application/json" \ -d '{"username":"customer1@example.com", "password":"customer1pw"}'

authorization: Bearer nj9plnx828w23ppp5u8e0po9sjrkqe0d

Andra lungu @iamspringerin

11

SeSsion based authSelf access enables a user to access resources they own.

For example, GET /V1/customers/me fetches the logged-in customer's details typically useful for JavaScript-based widgets.

Andra lungu @iamspringerin

12

BACKWARDS COMPATIBILITY& PHP annotations

Semantic Versioning MAJOR.MINOR.PATCH● MAJOR indicates incompatible API changes

● MINOR indicates backward-compatible functionality has been added

● PATCH indicates backward-compatible bug fixes

Andra lungu @iamspringerin

13

BACKWARDS COMPATIBILITY& PHP annotationsBackward compatible applies for classes and methods annotated

with @api within MINOR and PATCH updates to our components.

As changes are introduced, methods are annotated with @deprecated and removed only with the next MAJOR component version.

BACKWARDS COMPATIBILITY& PHP annotations

Andra lungu @iamspringerin

14

BACKWARDS COMPATIBILITY& PHP annotationsMagento uses reflection to automatically create classes and sets data submitted in JSON or HTTP

array syntax onto an instance of the expected PHP class when calling the service method.

Conversely, if an object is returned from one of these methods, Magento automatically converts

that PHP object into a JSON or SOAP object before sending it over the web API.

BACKWARDS COMPATIBILITY& PHP annotations

Andra lungu @iamspringerin

15

BACKWARDS COMPATIBILITY& PHP annotationsAll methods exposed by the web API must follow these rules

● Parameters must be defined in the doc block as * @param type $paramName

● Return type must be defined in the doc block as * @return type

● Valid object types include a fully qualified class name or a fully qualified interface name.

● Any parameters or return values of type array can be denoted by following any of the previous types by

an empty set of square brackets []

BACKWARDS COMPATIBILITY& PHP annotations

Andra lungu @iamspringerin

16

cuSTOMIZE AN API:Extension Attributes

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Api/etc/extension_attributes.xsd"> <extension_attributes for="Magento\Catalog\Api\Data\ProductInterface"> <attribute code="stock_item" type="Magento\CatalogInventory\Api\Data\StockItemInterface"> <resources> <resource ref="Magento_CatalogInventory::cataloginventory"/> </resources> </attribute> </extension_attributes></config>

Andra lungu @iamspringerin

17

CREATE AN API

18

CREATE AN APINever been easier !!!

Bitbull/CustomApi/etc/di.xml

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="Bitbull\CustomApi\Api\MagentoSeminarInterface" type="Bitbull\CustomApi\Model\MagentoSeminar" /></config>

Bitbull/CustomApi/etc/webapi.xml

<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd"> <route url="/V1/magentoseminar/:eventName" method="GET"> <service class="Bitbull\CustomApi\Api\MagentoSeminarInterface" method="getAwesomeEvent"/> <resources> <resource ref="Magento_Catalog::products" /> </resources> </route></routes>

Andra lungu @iamspringerin

19

CREATE AN APIBitbull/CustomApi/Api/MagentoSeminarInterface.php

namespace Bitbull\CustomApi\Api;

/** * @api */interface MagentoSeminarInterface{ /** * Get info about the conference * @api * @param string $eventName * @return string */ public function getAwesomeEvent($eventName);

}

Andra lungu @iamspringerin

20

CREATE AN APIBitbull/CustomApi/Model/MagentoSeminar.php

namespace Bitbull\CustomApi\Model;

class MagentoSeminar implements \Bitbull\CustomApi\Api\MagentoSeminarInterface{

/* * @api * @param string $conferenceName * @return string */ public function getAwesomeEvent($eventName) { return $eventName . ' is an awesome event'; }}

Andra lungu @iamspringerin

21

QUestions

Thank you

Andra lungu @iamspringerin