I am using Apigee edge free version to create API proxy which would fetch user profile from Facebook.Using the below url , i get the access token.
The above url sends me a redirect uri(another API proxy on Apigee edge) and an access token.I have added extract query param to extract the access token from the query param.
The problem is the access token is being sent as https://{redirect uri}?#access_token={accesstoken}.
Apigee is not detecting the query parameter as there is # at the beginning. Hence my extract query param is giving error "{"fault":{"faultstring":"Unresolved variable : queryinfo.token","detail":{"errorcode":"entities.UnresolvedVariable"}}}"
Please suggest on how to fix this.