Basic Authenication

We are trying to implement Basic Authentication and did follow below link but having issues

https://community.apigee.com/questions/2277/please-share-adding-basic-authentication-policy-ex.html

Apigee should receive credentials in headers and convert it to Basic Authorization and call the backend server as it expects Basic Auth.

When we tested using Post man while passing credentials with in the headers it prompts again for the Basic Authentication window?

-Vinay

0 2 80
2 REPLIES 2

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ProxyEndpoint name="default"> <Description/> <PreFlow name="PreFlow"> <Request> <Step> <FaultRules/> <Name>Assign-Content-Type</Name> </Step> <Step> <FaultRules/> <Name>Basic-Authentication</Name> </Step> </Request> <Response/> </PreFlow> <Flows/> <PostFlow name="PostFlow"> <Request/> <Response/> </PostFlow> <HTTPProxyConnection> <BasePath>/v1/test</BasePath> <VirtualHost>default</VirtualHost> </HTTPProxyConnection> <RouteRule name="default"> <TargetEndpoint>default</TargetEndpoint> </RouteRule> </ProxyEndpoint>

Please close it as we were using incorrect credentials.Its working as expected.

-Vinay