You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 24, 2025. It is now read-only.
>Extract data from an XML request body and set a custom XML response body.
59
+
>Extract data from an XML request body and set a custom XML response body.
60
60
61
61
7.[quota-1](./quota-1/README.md)
62
62
@@ -74,7 +74,7 @@ This is the recommended path through the examples. But you can do them in any or
74
74
### Prerequisites
75
75
76
76
1. You need an **Apigee account**. If you don't have an Apigee account, go to [https://login.apigee.com/login](https://login.apigee.com/login), and click Create Account.
77
-
2. You must install [apigeetool](https://www.npmjs.com/package/apigeetool). We use apigeetool to deploy the proxies.
77
+
2. You must install [apigeetool](https://www.npmjs.com/package/apigeetool). We use apigeetool to deploy the proxies.
78
78
79
79
`npm install -g apigeetool`
80
80
@@ -83,24 +83,29 @@ This is the recommended path through the examples. But you can do them in any or
83
83
2. Download or clone the [api-platform-samples](https://github.com/apigee/api-platform-samples) GitHub repo.
84
84
6. In a browser, sign in to your [Apigee account](http://apigee.com) and go to the API Management section. It'll be good to keep this browser window open as you work so you can view and trace the Learn Edge proxies in the UI.
85
85
86
+
**Troubleshooting:** If you've previously tried to run the sample and have
87
+
trouble with the script (for example, it's using the wrong organization
88
+
or the URL to invoke is incorrect), find and delete `HOME/learn-edge.rc`
89
+
on your local file system. Then re-deploy the sample.
90
+
86
91
That's it! To get started, go to the README for the first example proxy, [simplest-proxy](./simplest-proxy), and follow the instructions. On your filesystem, it is in the folder `api-platform-samples/learn-edge/simplest-proxy`.
87
92
88
93
### What you'll learn
89
94
90
95
We try not to clutter the lessons with a lot of explanation and background information. Rather, we expect you to learn by doing, by changing things, and fixing problems. When you complete the series, you will understand:
91
96
92
97
* The basic capabilities of Apigee Edge.
93
-
* Core concepts you'll need to be a successful Edge developer. They include security, fault handling, caching, quotas, and others.
98
+
* Core concepts you'll need to be a successful Edge developer. They include security, fault handling, caching, quotas, and others.
94
99
* How Edge projects are structured.
95
100
* How to do primary Edge development locally, on your laptop, rather than in the UI.
96
101
* How to deploy Edge proxies from your laptop to Edge.
97
102
* Basic debugging techniques.
98
103
99
-
**Tip:** If you want to dive deeper into any concept covered in this series, you can go to the [Apigee Edge documentation](http://docs.apigee.com/) and use Search to look up topics (search works very well and even picks up related topics in the [Apigee Community](https://community.apigee.com/index.html)). In a few cases, we'll provide a link if we think it will be especially helpful. You can also check out the Apigee Edge [4-Minute Video](https://www.youtube.com/playlist?list=PLIXjuPlujxxxe3iTmLtgfIBgpMo7iD7fk) series.
104
+
**Tip:** If you want to dive deeper into any concept covered in this series, you can go to the [Apigee Edge documentation](http://docs.apigee.com/) and use Search to look up topics (search works very well and even picks up related topics in the [Apigee Community](https://community.apigee.com/index.html)). In a few cases, we'll provide a link if we think it will be especially helpful. You can also check out the Apigee Edge [4-Minute Video](https://www.youtube.com/playlist?list=PLIXjuPlujxxxe3iTmLtgfIBgpMo7iD7fk) series.
100
105
101
106
### What you won't learn
102
107
103
-
* A lot of background, text-book style information. You'll learn by deploying and running example code on Apigee Edge. You can always read about features in the official [Apigee Edge documentation](http://docs.apigee.com/).
108
+
* A lot of background, text-book style information. You'll learn by deploying and running example code on Apigee Edge. You can always read about features in the official [Apigee Edge documentation](http://docs.apigee.com/).
104
109
* All of the possible use cases for Edge.
105
110
* All of the features included with Edge.
106
111
* All of the possible ways to use the features we introduce.
Copy file name to clipboardExpand all lines: sample-proxies/outbound-oauth/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,9 +67,9 @@ A demo application that performs a search and renders the results in HTML is inc
67
67
1. Sign up for [Microsoft Translator API](http://www.microsofttranslator.com/dev/) access,
68
68
and replace the `clientId` and `clientSecret` in `apiproxy/resources/jsc/api-config.js` with your application credentials.
69
69
70
-
2. Create a cache in the organization and environment you will be deploying the bundle in, using the definition in `twitter-translate-cache.xml`. This is used to cache the Translator API access token across requests. Try the following command:
70
+
2. Create a cache in the organization and environment you will be deploying the bundle in, using the definition in `oauth-token-cache.xml`. This is used to cache the Translator API access token across requests. Try the following command:
0 commit comments