Create an API proxy that enforces API key validation. By using this API key fetch developer name and developer email id using access entity.

Create an API proxy that enforces API key validation. By using this API key fetch developer name and developer email id using access entity.

0 3 130
3 REPLIES 3

Is this a training directive, or something?

Are you asking a question about HOW to do it?

This is a POC purpose. I am asking how to do that

Have you watched the Apigee 101 videos?

The second one describes how to apply the VerifyApiKey policy.

And then you need to use AccessEntity to get the developer information. Right from the docs it shows you how. It's literally the first example.

<AccessEntity name="GetDeveloperProfile">
  <EntityType  value="developer"/>
  <EntityIdentifier ref="request.queryparam.apikey" type="consumerkey"/> 
</AccessEntity>

What part are you stuck on?