Retrieve profiles for Apigee Edge entities. Entities include such things as developers, developer apps, products, and more.
This sample uses these policies:
Access Entity: To retrieve information about a developer entity.
Extract Variables: To extract the developer's email address.
Assign Message: To put the email address in a response header.
This sample shows how to retrieve profiles for entities from the Apigee Edge datastore. Using this policy, you can retrieve profiles for things like apps, developers, and API products. Sometimes you need this information to enable dynamic behavior in policies or code running on Apigee Edge.
This example shows you how to get a developer's email address based on an API key. This works because an API key can be used to uniquely identify a developer associated with a developer app.
The API proxy in this example does not make a request to a backend server, therefore there is no target endpoint definited. This proxy is an echo service that returns data directly from Edge.
You need to grab a valid API key from your Apigee Edge org and add it to the invoke.sh
file.
-
Log in to the Edge UI.
-
Select Developer Apps from the Publish menu.
-
Select any developer app -- it doesn't matter which one, as long as it has a Consumer Key that you can copy.
-
Click Show next to the Consumer Key for a product.
-
Copy the Consumer Key.
-
Open
invoke.sh
and insert the key you copied into theKEY
variable:KEY="t3AyRHIfbNJwJ6ZbBAxGmNj5YWljAeB"
-
Save the file.
-
Run
$ sh invoke.sh
When you invoke this proxy, it returns an HTTP response to your terminal, shown below. Note that the response includes a custom header X-Developer-email
. The value of this header was extracted and set dynamically on Edge. The actual email address depends on the API key you used to call the API.
```
HTTP/1.1 200 OK
User-Agent: curl/7.37.1
Host: docs-test.apigee.net
Accept: */*
X-Developer-email: [email protected]
Content-Length: 0
Connection: keep-alive
```
See the main project README file for information about setting up, deploying, and invoking sample proxies.
To deploy, run $ sh deploy.sh
To test, run $ sh invoke.sh
This screen shot from the Apigee Edge trace tool shows the placement of the policies used in this sample.
Policy used in this sample
Copyright © 2016 Apigee Corporation
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.