diff --git a/guides/m2devgde/v1.0.0.0/integration/what-is-integration.md b/guides/m2devgde/v1.0.0.0/integration/what-is-integration.md index 89952a89905..837a367cb9b 100644 --- a/guides/m2devgde/v1.0.0.0/integration/what-is-integration.md +++ b/guides/m2devgde/v1.0.0.0/integration/what-is-integration.md @@ -25,5 +25,5 @@ You have the following options to create your integration: * Creating the integration using the Magento Admin, which you might prefer if you aren't comfortable creating configuration files. For more information, see Manually Creating an Integration Using the Magento Admin. -* Automatically creating the integration by providing it as an extension package. For more information, see [Creating an Integration Automatically]({{ site.baseurl }}/guides/m2devgde/v1.0.0.0/integration/integration-create-man.html)). +* Automatically creating the integration by providing it as an extension package. For more information, see [Creating an Integration Automatically]({{ site.baseurl }}guides/m2devgde/v1.0.0.0/integration/integration-create-man.html)). diff --git a/guides/m2devgde/v1.0.0.0/rest/rest-overview.md b/guides/m2devgde/v1.0.0.0/rest/rest-overview.md index 83f039f5f2c..ecae564c909 100644 --- a/guides/m2devgde/v1.0.0.0/rest/rest-overview.md +++ b/guides/m2devgde/v1.0.0.0/rest/rest-overview.md @@ -46,10 +46,10 @@ In this case, the return object is Customer.php. #### Related Topics: -* What is the Magento 2 Service Framework? +* What is the Magento 2 Service Framework? -* How a Client Uses a Service +* How a Client Uses a Service -* Basics of Building a Service +* Basics of Building a Service -* What Is the Web API Framework? \ No newline at end of file +* What Is the Web API Framework? \ No newline at end of file diff --git a/guides/m2devgde/v1.0.0.0/svcs-framework/svc-how-to-use.md b/guides/m2devgde/v1.0.0.0/svcs-framework/svc-how-to-use.md index cddcb8c794a..5d469083cf7 100644 --- a/guides/m2devgde/v1.0.0.0/svcs-framework/svc-how-to-use.md +++ b/guides/m2devgde/v1.0.0.0/svcs-framework/svc-how-to-use.md @@ -13,7 +13,7 @@ Before interacting with a service, you must be familiar with the service interfa To directly invoke a service using its PHP interface, use dependency injection. To do this, simply define a constructor dependency on the service you need. From there, you can use the instance to directly invoke methods on the interface. -Because a service call typically accepts one or more primitive types (or [service data objects]({{ site.baseurl }}/guides/m2devgde/v1.0.0.0/svcs-framework/build-svc.html#about-service-data-objects)), you might have to convert or extract before calling the service. For an example, see `public function getInputData` in this Web API class. +Because a service call typically accepts one or more primitive types (or [service data objects]({{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/build-svc.html#about-service-data-objects)), you might have to convert or extract before calling the service. For an example, see `public function getInputData` in this Web API class. For example, if you know a customer's ID and want to get data about the customer, here's what you do: @@ -33,7 +33,7 @@ Service methods complete in one of two ways: Primitive type (such as an ID) - [Service data object]({{ site.baseurl }}/guides/m2devgde/v1.0.0.0/svcs-framework/build-svc.html#about-service-data-objects). A service data object holds only primitives or other service data objects and so on. In this case, it is up to the client to use the data returned in whatever way is appropriate. + [Service data object]({{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/build-svc.html#about-service-data-objects). A service data object holds only primitives or other service data objects and so on. In this case, it is up to the client to use the data returned in whatever way is appropriate. * Throw an exception @@ -43,10 +43,10 @@ Service methods complete in one of two ways: Any service that has an `app/code/[Vendor]/[Module]/etc/webapi.xml` can be accessed using REST and SOAP. (Additional tasks, not discussed here, are required to access services using SOAP.) -To set up a service so it can be accessed using REST, see [What is the Web API Framework?]({{ site.baseurl }}/guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.html) +To set up a service so it can be accessed using REST, see [What is the Web API Framework?]({{ site.baseurl }}guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.html) #### Related Topics: -* What is the Magento 2 Service Framework? +* What is the Magento 2 Service Framework? -* Basics of Building a Service \ No newline at end of file +* Basics of Building a Service \ No newline at end of file diff --git a/guides/m2devgde/v1.0.0.0/svcs-framework/svc-method-types.md b/guides/m2devgde/v1.0.0.0/svcs-framework/svc-method-types.md index 0cb1d7f8b9d..6c8dda412ff 100644 --- a/guides/m2devgde/v1.0.0.0/svcs-framework/svc-method-types.md +++ b/guides/m2devgde/v1.0.0.0/svcs-framework/svc-method-types.md @@ -61,10 +61,10 @@ Services are _not_ responsible for: #### Related Topics: -* What is the Magento 2 Service Framework? +* What is the Magento 2 Service Framework? -* How a Client Uses a Service +* How a Client Uses a Service -* Basics of Building a Service +* Basics of Building a Service -* What Is the Web API Framework? \ No newline at end of file +* What Is the Web API Framework? \ No newline at end of file diff --git a/guides/m2devgde/v1.0.0.0/svcs-framework/svcs-props.md b/guides/m2devgde/v1.0.0.0/svcs-framework/svcs-props.md index efbcbc449c8..b6e4929a0a2 100644 --- a/guides/m2devgde/v1.0.0.0/svcs-framework/svcs-props.md +++ b/guides/m2devgde/v1.0.0.0/svcs-framework/svcs-props.md @@ -61,10 +61,10 @@ Services are _not_ responsible for: #### Related Topics: -* What is the Magento 2 Service Framework? +* What is the Magento 2 Service Framework? -* How a Client Uses a Service +* How a Client Uses a Service -* Basics of Building a Service +* Basics of Building a Service -* What Is the Web API Framework? \ No newline at end of file +* What Is the Web API Framework? \ No newline at end of file diff --git a/guides/m2devgde/v1.0.0.0/svcs-framework/what-is-svc.md b/guides/m2devgde/v1.0.0.0/svcs-framework/what-is-svc.md index 7d2cd4dc16c..7c735ee22dc 100644 --- a/guides/m2devgde/v1.0.0.0/svcs-framework/what-is-svc.md +++ b/guides/m2devgde/v1.0.0.0/svcs-framework/what-is-svc.md @@ -24,8 +24,8 @@ Using services interfaces, an integrator can more easily interact with Magento 2 #### Related Topics: -* Understanding the Properties and Responsibilities of a Service +* Understanding the Properties and Responsibilities of a Service -* How a Client Uses a Service +* How a Client Uses a Service -* What Is the Web API Framework? +* What Is the Web API Framework? diff --git a/guides/m2devgde/v1.0.0.0/webapi/webapi-basic-auth.md b/guides/m2devgde/v1.0.0.0/webapi/webapi-basic-auth.md index cbd205a4dfc..fc875bdf11b 100644 --- a/guides/m2devgde/v1.0.0.0/webapi/webapi-basic-auth.md +++ b/guides/m2devgde/v1.0.0.0/webapi/webapi-basic-auth.md @@ -11,9 +11,9 @@ title: Authorizing Web API Requests This topic provides basic information about how to authorize Web API requests. -When a merchant installs an integration, they must be informed which Magento resources the Magento integration needs access to. To see how a merchant authorizes an integration, go to [What is the Web API Framework?]({{ site.baseurl }}/guides/m2devgde/v1.0.0.0/integration/integration-auth.html)). +When a merchant installs an integration, they must be informed which Magento resources the Magento integration needs access to. To see how a merchant authorizes an integration, go to [What is the Web API Framework?]({{ site.baseurl }}guides/m2devgde/v1.0.0.0/integration/integration-auth.html)). -Service developers declare the list of permissions required in the integration's `webapi.xml`. This is discussed in more detail in [What is the Web API Framework?]({{ site.baseurl }}/guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.html)). +Service developers declare the list of permissions required in the integration's `webapi.xml`. This is discussed in more detail in [What is the Web API Framework?]({{ site.baseurl }}guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.html)). **Note**: The Web API framework only verifies that the user (Magento administrator, anonymous user, API user, and so on) is authorized to invoke the API. Any business logic specific authorizations must be implemented at the service level. @@ -59,6 +59,6 @@ For the call to succeed, _all_ resources must be authorized; otherwise, an autho #### Related Topics: -* Basics of Building a Service +* Basics of Building a Service -* What Is the Web API Framework? \ No newline at end of file +* What Is the Web API Framework? \ No newline at end of file diff --git a/guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.md b/guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.md index ce920798bc2..95b84539461 100644 --- a/guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.md +++ b/guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.md @@ -53,12 +53,12 @@ Your module can use `webapi.xsd` or you can create a customized validation. #### Related Topics: -* Authorizing Web API Requests +* Authorizing Web API Requests -* What is the Magento 2 Service Framework? +* What is the Magento 2 Service Framework? -* Accessing Magento Objects Using REST +* Accessing Magento Objects Using REST -* How a Client Uses a Service +* How a Client Uses a Service -* Understanding the Properties and Responsibilities of a Service \ No newline at end of file +* Understanding the Properties and Responsibilities of a Service \ No newline at end of file