Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Update content #55

Merged
1 commit merged into from
Jun 26, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions guides/m2devgde/v1.0.0.0/rest/rest-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Accessing Magento Objects Using REST

<h1 id="what-is">Accessing Magento Objects Using REST</h1>

<p><a href="https://github.com/magento/devdocs/blob/master/guides/m2devgde/v1.0.0.0/rest/rest-overview.md" target="_blank"><em>Help us improve this page</em></a>&nbsp;<img src="{{ site.baseurl }}common/images/newWindow.gif"/></p>
<p><a href="{{ site.githuburl }}guides/m2devgde/v1.0.0.0/rest/rest-overview.md" target="_blank"><em>Help us improve this page</em></a>&nbsp;<img src="{{ site.baseurl }}common/images/newWindow.gif"/></p>

<h2 id="rest-call">How to Make a REST Call</h2>

Expand Down Expand Up @@ -47,9 +47,6 @@ In this case, the return object is Customer.php.
#### Related Topics:

* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/what-is-svc.html">What is the Magento 2 Service Framework?</a>

* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/svc-how-to-use.html">How a Client Uses a Service</a>

* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/build-svc.html">Basics of Building a Service</a>

* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.html">What Is the Web API Framework?</a>
4 changes: 2 additions & 2 deletions guides/m2devgde/v1.0.0.0/webapi/webapi-basic-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ layout: howtom2devgde_chapters
title: Authorizing Web API Requests
---

# Authorizing Web API Requests
# Authorizing Web API Requests

<p><a href="https://github.com/magento/devdocs/blob/master/guides/m2devgde/v1.0.0.0/webapi/webapi-basic-auth.md" target="_blank"><em>Help us improve this page</em></a>&nbsp;<img src="{{ site.baseurl }}common/images/newWindow.gif"/></p>
<p><a href="{{ site.githuburl }}guides/m2devgde/v1.0.0.0/webapi/webapi-basic-auth.md" target="_blank"><em>Help us improve this page</em></a>&nbsp;<img src="{{ site.baseurl }}common/images/newWindow.gif"/></p>

**Note**: The `AuthorizationV1Interface` interface discussed in this topic is not implemented yet.

Expand Down
10 changes: 3 additions & 7 deletions guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ title: What Is the Web API Framework?

<h1 id="webapi-whatis">What Is the Web API Framework?</h1>

<p><a href="https://github.com/magento/devdocs/blob/master/guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.md" target="_blank"><em>Help us improve this page</em></a>&nbsp;<img src="{{ site.baseurl }}common/images/newWindow.gif"/></p>
<p><a href="{{ site.githuburl }}guides/m2devgde/v1.0.0.0/webapi/what-is-webapi.md" target="_blank"><em>Help us improve this page</em></a>&nbsp;<img src="{{ site.baseurl }}common/images/newWindow.gif"/></p>

The Web API Framework gives third-party developers access to the service framework using REST or SOAP calls. Currently, Web API access is limited to Customer objects but we plan to expand access in time to include any Magento object.

Although REST and SOAP use different payloads and routing, they use the same authorization mechanisms to provide access to Magento services.

## Exposing a Service Using REST or SOAP

A Magento service can be exposed using REST only or using both SOAP and REST. In othe words, you cannot expose a service using SOAP without exposing it using REST.
A Magento service can be exposed using REST only or using both SOAP and REST. In othe words, you cannot expose a service using SOAP without also exposing it using REST.

### Configuring webapi.xml

Expand Down Expand Up @@ -54,11 +54,7 @@ Your module can use `webapi.xsd` or you can create a customized validation.
#### Related Topics:

* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/webapi/webapi-basic-auth.html">Authorizing Web API Requests</a>

* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/what-is-svc.html">What is the Magento 2 Service Framework?</a>

* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/rest/rest-overview.html">Accessing Magento Objects Using REST</a>

* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/svc-how-to-use.html">How a Client Uses a Service</a>

* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/svcs-props.html">Understanding the Properties and Responsibilities of a Service</a>
* <a href="{{ site.baseurl }}guides/m2devgde/v1.0.0.0/svcs-framework/svcs-props.html">Interacting With Services</a>