├── .gitignore ├── LICENSE ├── README.md ├── default-proxies ├── README.md ├── helloworld │ ├── README.md │ ├── apiproxy │ │ ├── helloworld.xml │ │ ├── policies │ │ │ ├── add-cors.xml │ │ │ └── check-quota.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── gulpfile.js │ ├── helloworld.zip │ ├── invoke.sh │ ├── openapi │ │ ├── mocktarget.yaml │ │ ├── mocktarget3.0.yaml │ │ └── readme.md │ ├── package.json │ └── test │ │ ├── test.html │ │ └── test.js └── oauth │ ├── apiproxy │ ├── oauth.xml │ ├── policies │ │ ├── GenerateAccessTokenClient.xml │ │ └── RefreshAccessToken.xml │ ├── proxies │ │ └── default.xml │ └── targets │ │ └── default.xml │ ├── deploy.sh │ └── oauth.zip ├── doc-samples ├── README.md ├── hosted-targets │ ├── README.md │ ├── node-hosted-custom-deps │ │ ├── README.md │ │ └── myapp │ │ │ ├── app.yaml │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ └── say-hello │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── package.json │ ├── node-hosted-express │ │ ├── README.md │ │ ├── apiproxy │ │ │ ├── node-hosted-express.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ └── hosted │ │ │ │ │ ├── app.yaml │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ └── targets │ │ │ │ └── default.xml │ │ └── deploy.txt │ └── node-hosted-hello │ │ ├── README.md │ │ └── apiproxy │ │ ├── node-hosted-hello.xml │ │ ├── proxies │ │ └── default.xml │ │ ├── resources │ │ └── hosted │ │ │ ├── app.yaml │ │ │ ├── index.js │ │ │ └── package.json │ │ └── targets │ │ └── default.xml ├── images │ └── postman-oauth.png ├── java-cookbook │ ├── README.md │ ├── apiproxy │ │ ├── java-cookbook.xml │ │ ├── policies │ │ │ ├── Java-Convert-Response-to-Uppercase.xml │ │ │ └── RF-Unknown-Request.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── java │ │ │ │ └── apigee-sample-callout-ResponseUppercase.jar │ │ └── targets │ │ │ └── default.xml │ ├── buildsetup.sh │ ├── callout │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── ResponseUppercase.java │ ├── deploy.sh │ ├── invoke.sh │ ├── javadocs-javacallout │ │ └── README.md │ └── lib │ │ ├── README.md │ │ ├── expressions-1.0.0.jar │ │ └── message-flow-1.0.0.jar ├── java-error │ ├── README.md │ ├── apiproxy │ │ ├── java-error.xml │ │ ├── policies │ │ │ ├── AM-Remove-All-Headers.xml │ │ │ └── Java-Produce-Greeting.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── resources │ │ │ └── java │ │ │ └── apigee-custom-policy-java-error.jar │ ├── buildsetup.sh │ ├── callout │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── JavaError.java │ │ └── target │ │ │ └── classes │ │ │ └── com │ │ │ └── apigeesample │ │ │ └── JavaError.class │ ├── deploy.sh │ ├── invoke.sh │ └── lib │ │ ├── README.md │ │ ├── expressions-1.0.0.jar │ │ └── message-flow-1.0.0.jar ├── java-hello │ ├── README.md │ ├── apiproxy │ │ ├── java-cookbook.xml │ │ ├── policies │ │ │ ├── AM-Copy-Username-Header.xml │ │ │ └── Java-Hello.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── resources │ │ │ └── java │ │ │ └── apigee-custom-policy-java-hello.jar │ ├── buildsetup.sh │ ├── callout │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── HelloJava.java │ ├── deploy.sh │ ├── invoke.sh │ └── lib │ │ ├── README.md │ │ ├── expressions-1.0.0.jar │ │ └── message-flow-1.0.0.jar ├── java-properties │ ├── README.md │ ├── apiproxy │ │ ├── java-properties.xml │ │ ├── policies │ │ │ └── Java-Read-Properties-From-Policy-Configuration.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── resources │ │ │ └── java │ │ │ └── apigee-custom-policy-java-properties.jar │ ├── buildsetup.sh │ ├── callout │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── JavaProperties.java │ ├── deploy.sh │ ├── invoke.sh │ └── lib │ │ ├── README.md │ │ ├── expressions-1.0.0.jar │ │ └── message-flow-1.0.0.jar ├── javascript-cookbook │ ├── README.md │ ├── apiproxy │ │ ├── javascript-cookbook.xml │ │ ├── policies │ │ │ ├── minimize.xml │ │ │ ├── setHeaders.xml │ │ │ └── transform.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ ├── minimize.js │ │ │ │ └── setHeaders.js │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── javascript-mashup-cookbook │ ├── README.md │ ├── apiproxy │ │ ├── javascript-mashup-cookbook.xml │ │ ├── policies │ │ │ └── MashItUp.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ └── MashItUp.js │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── nodejs-baas-cookbook │ ├── README.md │ ├── apiproxy │ │ ├── employees.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── node │ │ │ │ ├── config.js │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── nodejs-hello │ ├── README.md │ ├── apiproxy │ │ ├── Hello.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── node │ │ │ │ └── hello-world.js │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── oauth-doc-examples │ ├── README.md │ ├── apiproxy │ │ ├── OAuth-Doc.xml │ │ ├── policies │ │ │ ├── GenerateAccessToken.xml │ │ │ ├── GenerateAccessTokenImplicit.xml │ │ │ ├── GenerateAuthorizationCode.xml │ │ │ └── RefreshAccessToken.xml │ │ └── proxies │ │ │ └── default.xml │ └── deploy.sh └── policy-mashup-cookbook │ ├── README.md │ ├── apiproxy │ ├── policies │ │ ├── AssignElevationParameters.xml │ │ ├── ExecuteGeocodingRequest.xml │ │ ├── GenerateGeocodingRequest.xml │ │ ├── GenerateResponse.xml │ │ ├── ParseElevationResponse.xml │ │ ├── ParseGeocodingResponse.xml │ │ └── xmltojson.xml │ ├── policy-mashup-cookbook.xml │ ├── proxies │ │ └── default.xml │ ├── resources │ │ └── jsc │ │ │ └── GenerateResponse.js │ └── targets │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── docs ├── javadocs-javacallout.zip └── javadocs-javacallout │ ├── MessageContext.html │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com │ └── apigee │ │ └── flow │ │ ├── execution │ │ ├── Action.html │ │ ├── Callback.html │ │ ├── ExecutionContext.html │ │ ├── ExecutionResult.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── spi │ │ │ ├── Execution.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── message │ │ ├── FlowContext.html │ │ ├── Message.html │ │ ├── MessageContext.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── resources │ └── inherit.gif │ ├── script.js │ └── stylesheet.css ├── edge-ux ├── basic-apikey-security │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ └── VerifyApiKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── edge.js │ ├── gulpfile.js │ ├── invoke.sh │ └── package.json ├── enforce-quota-simple │ ├── README.md │ ├── apiproxy │ │ ├── enforce-quota-simple.xml │ │ ├── policies │ │ │ └── EnforceQuota.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── gulpfile.js │ └── package.json ├── extract-json-payload │ ├── README.md │ ├── apiproxy │ │ ├── extract-json-payload.xml │ │ ├── policies │ │ │ ├── AssignCustomHeaders.xml │ │ │ └── ParseJsonResponse.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── gulpfile.js │ └── package.json ├── fault-handling-apikey │ ├── README.md │ ├── apiproxy │ │ ├── fault-handling-apikey.xml │ │ ├── policies │ │ │ ├── AM-Invalid-Api-Key-Message.xml │ │ │ └── VerifyAPIKey-1.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── edge.js │ ├── gulpfile.js │ └── package.json ├── proxy-to-target │ ├── README.md │ ├── apiproxy │ │ ├── proxies │ │ │ └── default.xml │ │ ├── proxy-to-target.xml │ │ └── targets │ │ │ └── default.xml │ ├── gulpfile.js │ ├── package.json │ └── test │ │ ├── test.html │ │ └── test.js └── response-cache-simple │ ├── README.md │ ├── apiproxy │ ├── policies │ │ └── ResponseCache.xml │ ├── proxies │ │ └── default.xml │ ├── response-cache-simple.xml │ └── targets │ │ └── default.xml │ ├── gulpfile.js │ └── package.json ├── images ├── access-entity-trace.png ├── apigee-community.png ├── apigee-logo.png ├── apikey-quota-trace.png ├── icon-access-entity.jpg ├── icon-assign-message.jpg ├── icon-policy-javascript.jpg ├── icon-policy-quota.jpg ├── icon-policy-security.jpg ├── icon-xml-to-json.jpg ├── icon_policy_extract-variable.jpg ├── icon_policy_python.jpg ├── icon_policy_traffic-management.jpg ├── javascript-include-trace.png ├── navigator.png ├── pagination-trace.png ├── python-script-trace.png ├── quota-1-product-settings.png ├── sample-proxies-1.png ├── simple-python-trace.png ├── target-reroute-trace.png ├── variables-trace.png ├── xmltojson-trace-2.png └── xmltojson-trace.png ├── learn-edge ├── README.md ├── apikey-security-1 │ ├── README.md │ ├── apikey-security-1.zip │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ └── VerifyApiKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── apikey-security-2 │ ├── README.md │ ├── apikey-security-2.zip │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── RemoveAPIKey.xml │ │ │ └── VerifyApiKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── extract-json-payload-2 │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── AM-Invalid-API-Key-Message.xml │ │ │ ├── AM-Set-Custom-Response.xml │ │ │ ├── AM-Set-Sample-Response.xml │ │ │ ├── EV-Parse-Json-Response.xml │ │ │ └── VerifyAPIKey-1.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── extract-json-payload │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── AssignCustomHeaders.xml │ │ │ ├── InvalidApiKey.xml │ │ │ ├── ParseJsonResponse.xml │ │ │ ├── ResponseCache.xml │ │ │ └── VerifyApiKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── extract-json-payload.zip │ └── invoke.sh ├── extract-xml-payload │ ├── README.md │ ├── apiproxy │ │ ├── extract-xml-payload.xml │ │ ├── policies │ │ │ ├── AM-CompanyId-Payload.xml │ │ │ ├── AM-Directions-Payload.xml │ │ │ ├── AM-Invalid-API-Key-Message.xml │ │ │ ├── EV-CompanyId.xml │ │ │ ├── EV-Direction-Info.xml │ │ │ └── VerifyApiKey.xml │ │ └── proxies │ │ │ └── default.xml │ ├── company_info_body.xml │ ├── deploy.sh │ ├── directions_body.xml │ ├── extract-xml-payload.zip │ └── invoke.sh ├── fault-handling-1 │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── AM-Invalid-API-Key-Message.xml │ │ │ └── VerifyApiKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── fault-handling-1.zip │ └── invoke.sh ├── fault-handling-2 │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── AM-BadParam-A.xml │ │ │ ├── AM-BadParam-B.xml │ │ │ ├── AM-BadParam-C.xml │ │ │ ├── AM-BadParam-X.xml │ │ │ ├── AM-BadParam-Y.xml │ │ │ ├── AM-BadParam-Z.xml │ │ │ ├── AM-Copy-Query-Parameters-to-Variables.xml │ │ │ ├── AM-Invalid-API-Key-Message.xml │ │ │ ├── AM-Remove-API-Key.xml │ │ │ ├── RF-Contrived-Error.xml │ │ │ └── VerifyApiKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── fault-handling-2.zip │ └── invoke.sh ├── provisioning │ ├── LearnEdgeProduct.json │ ├── README.md │ ├── cleanup.sh │ ├── learn-edge-app.xml │ ├── learn-edge-developer.xml │ ├── learn-edge-product.xml │ └── setup.sh ├── proxy-to-a-target │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── proxy-to-a-target.zip ├── quota-1 │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── EnforceQuota.xml │ │ │ └── VerifyApiKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── quota-1.zip ├── response-cache-1 │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── AM-Invalid-API-Key-Message.xml │ │ │ ├── ResponseCache.xml │ │ │ └── VerifyApiKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── response-cache-2 │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── AM-Invalid-API-Key-Message.xml │ │ │ ├── AM-Set-Response-Headers.xml │ │ │ ├── ResponseCache.xml │ │ │ └── VerifyApiKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── response-cache-2.zip ├── scripts │ ├── deploy_proxy.sh │ ├── set_env.sh │ ├── verify_credentials.sh │ └── verify_provisioning.sh ├── service-callout-1 │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── AM-Build-Request.xml │ │ │ ├── AM-Inject-Response-Headers.xml │ │ │ ├── AM-Invalid-API-Key-Message.xml │ │ │ ├── EV-Parse-Json-Response.xml │ │ │ ├── SC-Get-Mock-Response.xml │ │ │ └── VerifyApiKey.xml │ │ └── proxies │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── service-callout-1.zip ├── service-callout-2 │ ├── README.md │ ├── apiproxy │ │ ├── learn-edge.xml │ │ ├── policies │ │ │ ├── AM-BuildRequest.xml │ │ │ ├── AM-InvalidApiKeyMessage.xml │ │ │ ├── RF-RaiseCustomFault.xml │ │ │ ├── SC-GetMockResponse.xml │ │ │ └── VerifyAPIKey.xml │ │ └── proxies │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh └── simplest-proxy │ ├── README.md │ ├── apiproxy │ ├── learn-edge.xml │ └── proxies │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── simplest-proxy.zip ├── perf-proxies ├── README.md ├── perfproxy │ └── apiproxy │ │ ├── perf.xml │ │ ├── policies │ │ ├── AM-JwtAuthorization.xml │ │ ├── AM-OAuthJwtSecrets.xml │ │ ├── AM-PrivateKey.xml │ │ ├── AM-Response.xml │ │ ├── AssignSCResponse.xml │ │ ├── ExtractSCResponse.xml │ │ ├── FlowCallout.xml │ │ ├── GenerateAccessToken.xml │ │ ├── GenerateJWT.xml │ │ ├── GenerateJwtAccessTokenWithHSA.xml │ │ ├── GraphQL.xml │ │ ├── JSHeader.xml │ │ ├── LimitByIP.xml │ │ ├── LimitByQuota.xml │ │ ├── LimitBySlowQuota.xml │ │ ├── LimitTotal.xml │ │ ├── MonetizationLimitsCheck.xml │ │ ├── RF-MissingParam.xml │ │ ├── Raise-Fault.xml │ │ ├── RejectURI.xml │ │ ├── RemoveQueryParams.xml │ │ ├── ResponseCache.xml │ │ ├── ResponsePayload.xml │ │ ├── SC-BuildRequest.xml │ │ ├── ScJSON.xml │ │ ├── ServiceCallout.xml │ │ ├── SetCacheHeader.xml │ │ ├── ValidateKey.xml │ │ ├── ValidateOAuth.xml │ │ ├── VerifyJWT.xml │ │ ├── VerifyJwtAccessToken.xml │ │ ├── XSLT.xml │ │ ├── add-cors.xml │ │ ├── assign-header.xml │ │ ├── getURL.xml │ │ └── putURL.xml │ │ ├── proxies │ │ └── proxy.xml │ │ ├── resources │ │ ├── graphql │ │ │ └── schema.graphql │ │ ├── js │ │ │ └── jsheader.js │ │ └── xsl │ │ │ └── weatherxsl │ │ └── targets │ │ └── static.xml └── sharedflows │ └── sfassignmessage │ └── sharedflowbundle │ ├── policies │ └── AssignMessage.xml │ ├── sfassignmessage.xml │ └── sharedflows │ └── default.xml ├── sample-proxies ├── README.md ├── access-entity │ ├── README.md │ ├── apiproxy │ │ ├── access-entity.xml │ │ ├── policies │ │ │ ├── EchoVariables.xml │ │ │ ├── GetDeveloperProfile.xml │ │ │ └── SetDeveloperProfile.xml │ │ └── proxies │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── advanced-api-services │ ├── token-gen │ │ ├── README.md │ │ ├── apiproxy │ │ │ ├── api_services_token_endpoint.xml │ │ │ ├── policies │ │ │ │ ├── convertexpiresintostring.xml │ │ │ │ ├── debug.xml │ │ │ │ ├── decodeauthorizationheader.xml │ │ │ │ ├── extractaccesstokenfromtokenresponse.xml │ │ │ │ ├── extractcredentials.xml │ │ │ │ ├── extractdatastoreinfo.xml │ │ │ │ ├── fault_genericfault.xml │ │ │ │ ├── fault_invalidcredentials.xml │ │ │ │ ├── fault_invalidrequest.xml │ │ │ │ ├── fault_notfound.xml │ │ │ │ ├── generateapigeeaccesstoken_ccg.xml │ │ │ │ ├── generateapigeeaccesstoken_pg.xml │ │ │ │ ├── generateapigeeaccesstoken_refr.xml │ │ │ │ ├── invalidateaccesstoken.xml │ │ │ │ ├── invalidaterefreshtoken.xml │ │ │ │ ├── setappservicestokenrequestpayload_ccg.xml │ │ │ │ ├── setappservicestokenrequestpayload_pg.xml │ │ │ │ ├── setappservicestokenrequestpayload_refr.xml │ │ │ │ ├── setauthorizationheader.xml │ │ │ │ ├── setfinalresponse_ccg.xml │ │ │ │ ├── setfinalresponse_invalidate.xml │ │ │ │ ├── setfinalresponse_pg.xml │ │ │ │ ├── setfinalresponse_refr.xml │ │ │ │ ├── settokentargeturl.xml │ │ │ │ └── verifyapikeyfromauthheader.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ └── py │ │ │ │ │ ├── ConvertExpiresInToString.py │ │ │ │ │ ├── DecodeAuthorizationHeader.py │ │ │ │ │ ├── SetTokenTargetUrl.py │ │ │ │ │ └── debug.py │ │ │ └── targets │ │ │ │ └── default.xml │ │ ├── deploy.sh │ │ └── invoke.sh │ └── token-validate │ │ ├── README.md │ │ ├── apiproxy │ │ ├── app_services_request_sample.xml │ │ ├── policies │ │ │ ├── debug.xml │ │ │ ├── decodeauthorizationheader.xml │ │ │ ├── extractdatastoreinfofromverifyaccesstoken.xml │ │ │ ├── fault_genericfault.xml │ │ │ ├── fault_invalidcredentials.xml │ │ │ ├── fault_notfound.xml │ │ │ ├── setcollectiontargeturl.xml │ │ │ └── verifyaccesstoken.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── py │ │ │ │ ├── ConvertExpiresInToString.py │ │ │ │ ├── DecodeAuthorizationHeader.py │ │ │ │ ├── SetCollectionTargetUrl.py │ │ │ │ └── debug.py │ │ └── targets │ │ │ └── default.xml │ │ ├── deploy.sh │ │ └── invoke.sh ├── apigee-quickstart │ └── httpbin_rev1_2020_02_02.zip ├── apikey │ ├── README.md │ ├── apikey.zip │ ├── apiproxy │ │ ├── ApiKeySample.xml │ │ ├── policies │ │ │ ├── CheckQuota.xml │ │ │ ├── StripAPIKey.xml │ │ │ └── ValidateAPIKey.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── async-callout │ ├── README.md │ ├── apiproxy │ │ ├── async-callout.xml │ │ ├── policies │ │ │ ├── assemble_response.xml │ │ │ └── callout.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ ├── assemble_response.js │ │ │ │ └── callout.js │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── base64encoder │ ├── README.md │ ├── apiproxy │ │ ├── base64encoder.xml │ │ ├── policies │ │ │ ├── EchoVariables.xml │ │ │ └── EncodeAuthHeader.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ ├── core-min.js │ │ │ │ ├── enc-base64-min.js │ │ │ │ ├── enc-utf16-min.js │ │ │ │ └── encodeAuthHeader.js │ │ └── targets │ │ │ └── default.xml │ ├── base64encoder.zip │ ├── deploy.sh │ └── invoke.sh ├── condition-pattern-matching │ ├── README.md │ ├── apiproxy │ │ ├── matchtest.xml │ │ ├── policies │ │ │ ├── SetResponse.xml │ │ │ └── SomePolicy.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── resources │ │ │ └── jsc │ │ │ └── setresponse.js │ ├── condition-pattern-matching.zip │ ├── deploy.sh │ └── invoke.sh ├── conditional-policy │ ├── README.md │ ├── apiproxy │ │ ├── conditional-policy.xml │ │ ├── policies │ │ │ └── Timer.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── py │ │ │ │ └── timer │ │ └── targets │ │ │ └── default.xml │ ├── conditional-policy.zip │ ├── deploy.sh │ └── invoke.sh ├── dynamic-endpoint │ ├── README.md │ ├── apiproxy │ │ ├── dynamic-endpoint.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ ├── default.xml │ │ │ └── twitter.xml │ ├── deploy.sh │ └── invoke.sh ├── graphql-sample │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── deployment-pom.xml │ ├── docs │ │ └── images │ │ │ ├── arch.png │ │ │ ├── introspect_trace.png │ │ │ ├── mutation.png │ │ │ ├── overview.png │ │ │ ├── playground.gif │ │ │ ├── playground_200.png │ │ │ ├── playground_403.png │ │ │ ├── prods.png │ │ │ └── query.png │ ├── graphql-config │ │ ├── pom.xml │ │ └── resources │ │ │ └── edge │ │ │ └── env │ │ │ └── test │ │ │ └── kvms.json │ ├── graphql-proxy │ │ ├── .gitignore │ │ ├── apiproxy │ │ │ ├── graphql-proxy.xml │ │ │ ├── policies │ │ │ │ ├── AddCORS.xml │ │ │ │ ├── BadMethod.xml │ │ │ │ ├── BadRequest.xml │ │ │ │ ├── GetEntitlementsMap.xml │ │ │ │ ├── GetQueryFromPayload.xml │ │ │ │ ├── GetQueryFromQueryParam.xml │ │ │ │ ├── GraphQLAuthZ.xml │ │ │ │ ├── ScopesToEntitlements.xml │ │ │ │ ├── SetTarget.xml │ │ │ │ ├── SpikeArrest.xml │ │ │ │ └── UnAuthorizedGraphQL.xml │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ ├── resources │ │ │ │ └── jsc │ │ │ │ │ ├── graphql.jsc.js │ │ │ │ │ ├── scopesToEntitlements.js │ │ │ │ │ └── setTarget.js │ │ │ └── targets │ │ │ │ └── default.xml │ │ └── pom.xml │ └── pom.xml ├── images │ ├── oauth-advanced-sequence-diagram.png │ ├── oauth-advanced-success.png │ ├── oauth-auth-code-flow.png │ ├── oauth-client-cred-flow-3.png │ └── oauth-validate-key-secret.png ├── iterate-headers │ ├── README.md │ ├── apiproxy │ │ ├── iterate-headers.xml │ │ ├── policies │ │ │ ├── PrintHeaders.xml │ │ │ └── SetResponse.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ └── Print_Headers.js │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── jira-release-notes │ ├── README.md │ ├── apiproxy │ │ ├── jirareleasenotes.xml │ │ ├── policies │ │ │ ├── JSON-to-XML.xml │ │ │ └── XSL-Transform.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── xsl │ │ │ │ └── releasenotes_api.xsl │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── jira_whatsnew_proxy.zip ├── json-patch-app-services │ ├── README.md │ ├── apiproxy │ │ ├── json-patch-app-services.xml │ │ ├── policies │ │ │ ├── get-original-json.xml │ │ │ ├── lib.json-patch-duplex.xml │ │ │ └── patch-and-make-put.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ ├── get-original-json.js │ │ │ │ ├── lib.json-patch-duplex.js │ │ │ │ └── patch-and-make-put.js │ │ └── targets │ │ │ └── default.xml │ ├── demo │ │ ├── css │ │ │ ├── demo.css │ │ │ └── jsoneditor-min.css │ │ ├── img │ │ │ └── jsoneditor-icons.png │ │ ├── index.html │ │ └── js │ │ │ ├── demo.js │ │ │ ├── json-patch-duplex.js │ │ │ └── jsoneditor-min.js │ ├── deploy.sh │ └── invoke.sh ├── kerberos-credential-mediation │ ├── README.md │ ├── apiproxy │ │ ├── kerberos-credential-mediation.xml │ │ ├── policies │ │ │ └── credentialdelegation.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── java │ │ │ │ └── kerberos-credential-mediation.jar │ │ └── targets │ │ │ └── default.xml │ └── deploy.sh ├── oauth-advanced │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── index.js │ │ └── templates │ │ │ ├── login-app │ │ │ └── apiproxy │ │ │ │ ├── login-app-v1.xml │ │ │ │ ├── policies │ │ │ │ ├── Return404.xml │ │ │ │ ├── SetXForwardedProto.xml │ │ │ │ └── VerifyAPIKey.xml │ │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ │ ├── resources │ │ │ │ └── node │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.js │ │ │ │ │ ├── config │ │ │ │ │ └── config.js │ │ │ │ │ ├── lib │ │ │ │ │ ├── apigee-session-store.js │ │ │ │ │ └── utils.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ ├── images │ │ │ │ │ │ └── apigee_logo_md.png │ │ │ │ │ └── stylesheets │ │ │ │ │ │ └── global.css │ │ │ │ │ ├── routes │ │ │ │ │ ├── consent.js │ │ │ │ │ ├── login.js │ │ │ │ │ └── registration.js │ │ │ │ │ └── views │ │ │ │ │ ├── consent.ejs │ │ │ │ │ ├── layout.ejs │ │ │ │ │ ├── login.ejs │ │ │ │ │ └── registration.ejs │ │ │ │ └── targets │ │ │ │ └── node.xml │ │ │ ├── oauth2 │ │ │ └── apiproxy │ │ │ │ ├── oauth2.xml │ │ │ │ ├── policies │ │ │ │ ├── AccessTokenRefresh.xml │ │ │ │ ├── AccessTokenRequest.xml │ │ │ │ ├── AccessTokenResponse.xml │ │ │ │ ├── AccessTokenResponseCC.xml │ │ │ │ ├── AccessTokenResponseRT.xml │ │ │ │ ├── GenerateAuthorizationCode.xml │ │ │ │ ├── JsonToXml.xml │ │ │ │ ├── Send404NotFoundResponse.xml │ │ │ │ ├── SetAuthCodeParameters.xml │ │ │ │ ├── SetValidTokenResponse.xml │ │ │ │ └── VerifyAccessToken.xml │ │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ │ └── resources │ │ │ │ └── jsc │ │ │ │ └── SetAuthCodeParameters.js │ │ │ ├── provisioning │ │ │ ├── cleanup.sh │ │ │ ├── login-app-developer.xml │ │ │ ├── login-app-product.json │ │ │ ├── login-app-product.xml │ │ │ ├── login-app.xml │ │ │ ├── provision-login-app.sh │ │ │ ├── provision-webserver.sh │ │ │ ├── webserver-app.xml │ │ │ ├── webserver-developer.xml │ │ │ ├── webserver-product.json │ │ │ └── webserver-product.xml │ │ │ ├── user-mgmt-v1 │ │ │ └── apiproxy │ │ │ │ ├── policies │ │ │ │ ├── SetProfileResponse.xml │ │ │ │ ├── VerifyAccessToken.xml │ │ │ │ ├── extract-user-json.xml │ │ │ │ ├── extract-user-path.xml │ │ │ │ ├── fault-400-user-exists.xml │ │ │ │ ├── kvm-get-password.xml │ │ │ │ ├── kvm-put-password.xml │ │ │ │ ├── pw-hashing.xml │ │ │ │ ├── response-200-auth-success.xml │ │ │ │ ├── response-200-changepw-success.xml │ │ │ │ ├── response-201.xml │ │ │ │ ├── response-403-auth-fail.xml │ │ │ │ ├── response-404.xml │ │ │ │ ├── response-500-changepw-fail.xml │ │ │ │ └── username-to-lower.xml │ │ │ │ ├── proxies │ │ │ │ └── default.xml │ │ │ │ ├── resources │ │ │ │ └── jsc │ │ │ │ │ ├── hmac-sha1.js │ │ │ │ │ ├── pw-hashing.js │ │ │ │ │ └── usernameToLower.js │ │ │ │ └── user-mgmt-v1.xml │ │ │ └── webserver-app │ │ │ └── apiproxy │ │ │ ├── policies │ │ │ ├── BuildAccessTokenRequest.xml │ │ │ ├── BuildValidateTokenRequest.xml │ │ │ ├── EncodeAppCredentials.xml │ │ │ ├── ExtractAccessToken.xml │ │ │ ├── ExtractUser.xml │ │ │ ├── HTMLIndex.xml │ │ │ ├── RedirectToAuthenticatedHomepage.xml │ │ │ ├── RequestAccessToken.xml │ │ │ ├── SetAuthenticatedHomePageResponse.xml │ │ │ ├── SetConfigurationVariables.xml │ │ │ └── ValidateTokenCallout.xml │ │ │ ├── proxies │ │ │ └── default.xml │ │ │ └── webserver-app.xml │ ├── images │ │ ├── apigee-community.png │ │ ├── oauth-advanced-sequence-diagram.png │ │ └── oauth-authcode.gif │ └── package.json ├── oauth-client-credentials │ ├── README.md │ ├── apiproxy │ │ ├── OAuthSample.xml │ │ ├── policies │ │ │ └── GenerateAccessToken.xml │ │ └── proxies │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── oauth-client-credentials.zip ├── oauth-login-app │ ├── README.md │ ├── apiproxy │ │ ├── OAuth20.xml │ │ ├── policies │ │ │ ├── DeleteForwardedHeaders.xml │ │ │ ├── GenerateAccessToken.xml │ │ │ ├── GenerateAuthorizationCode.xml │ │ │ ├── RedirectToLoginApp.xml │ │ │ ├── sample.loginpage.implicitflow.xml │ │ │ └── sample.loginpage.webserverflow.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── oauth-validate-key-secret │ ├── README.md │ ├── apiproxy │ │ ├── oauth-validate-key-secret.xml │ │ ├── policies │ │ │ ├── AM-CreateAuthenticateRequest.xml │ │ │ ├── EV-UsernamePassword.xml │ │ │ ├── OA-GenerateAccessToken-Password.xml │ │ │ ├── OA-VerifyAPIKey-and-Secret.xml │ │ │ ├── RF-AutenticateFailed.xml │ │ │ └── SC-AuthenticateUser.xml │ │ └── proxies │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── oauth-validate-key-secret.zip ├── oauth-verify-accesstoken │ ├── README.md │ ├── apiproxy │ │ ├── OAuthVerifyTokenSample.xml │ │ ├── policies │ │ │ ├── CheckQuota.xml │ │ │ └── ValidateOAuth.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── oauth10a-3legged │ ├── README.md │ ├── apiproxy │ │ ├── OAuth10Application.xml │ │ ├── policies │ │ │ ├── GenerateAccessToken.xml │ │ │ ├── GenerateRequestToken.xml │ │ │ ├── GenerateVerifier.xml │ │ │ └── VerifyAccessToken.xml │ │ ├── proxies │ │ │ └── default.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── outbound-oauth │ ├── README.md │ ├── apiproxy │ │ ├── outbound-oauth.xml │ │ ├── policies │ │ │ ├── api-config.xml │ │ │ ├── api-token-cache-hit-header.xml │ │ │ ├── api-token-get.xml │ │ │ ├── api-token-lookup-cache.xml │ │ │ ├── api-token-populate-cache.xml │ │ │ ├── cors.xml │ │ │ ├── translate-query.xml │ │ │ └── translate-results.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ ├── api-config.js │ │ │ │ ├── api-token-get.js │ │ │ │ ├── translate-query.js │ │ │ │ └── translate-results.js │ │ └── targets │ │ │ └── default.xml │ ├── demo │ │ ├── demo.css │ │ ├── demo.js │ │ └── index.html │ ├── deploy.sh │ ├── invoke.sh │ └── oauth-token-cache.xml ├── pagination │ ├── README.md │ ├── apiproxy │ │ ├── pagination.xml │ │ ├── policies │ │ │ ├── AssignMessage-1.xml │ │ │ ├── ExtractVariables-1.xml │ │ │ ├── ResponseCache-1.xml │ │ │ └── XSLT-Paginate.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── xsl │ │ │ │ └── paginate.xslt │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ ├── pagination.zip │ ├── paginationCache.xml │ ├── restaurant_locator_target.zip │ └── restaurant_locator_target │ │ └── apiproxy │ │ ├── policies │ │ └── Assign-Message-1.xml │ │ ├── proxies │ │ └── default.xml │ │ └── restaurant_locator.xml ├── regex-protection │ ├── README.md │ ├── apiproxy │ │ ├── policies │ │ │ ├── DetectRegexError.xml │ │ │ └── RegexProtection.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── regex-protection.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── regex-protection.zip ├── response-cache │ ├── README.md │ ├── apiproxy │ │ ├── policies │ │ │ ├── addheader.xml │ │ │ └── cacheforecast.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── response-cache.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ ├── refresh_cache.sh │ ├── skip-lookup.sh │ └── skip-population.sh ├── shared-flow │ ├── README.md │ ├── apiproxy │ │ ├── policies │ │ │ └── Auth-Flow-Callout.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── shared-flow-client-proxy.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ ├── invoke.sh │ └── sharedflowbundle │ │ ├── policies │ │ └── Verify-API-Key.xml │ │ ├── sharedflows │ │ └── default.xml │ │ └── verify-apikey-shared.xml ├── simple-python │ ├── README.md │ ├── apiproxy │ │ ├── policies │ │ │ └── pythonscriptpolicy.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── python.xml │ │ ├── resources │ │ │ └── py │ │ │ │ └── setHeader.py │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── soap │ ├── README.md │ ├── apiproxy │ │ ├── SimpleSOAP.xml │ │ ├── policies │ │ │ ├── CalculateNewAddress.xml │ │ │ ├── ExtractAddress.xml │ │ │ ├── SaveHostHeader.xml │ │ │ └── TransformWSDL.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ ├── py │ │ │ │ └── calculateaddress.py │ │ │ └── xsl │ │ │ │ └── fixwsdl.xsl │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── streaming │ ├── README.md │ ├── apiproxy │ │ ├── proxies │ │ │ └── default.xml │ │ ├── streaming.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── target-reroute │ ├── README.md │ ├── apiproxy │ │ ├── policies │ │ │ ├── extractZip.xml │ │ │ └── rewriteTargetUrl.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ └── rewriteTargetUrl.js │ │ ├── target-reroute.xml │ │ └── targets │ │ │ └── default.xml │ ├── deploy.sh │ └── invoke.sh ├── twitter-mobile-timeline │ ├── README.md │ ├── apiproxy │ │ ├── policies │ │ │ ├── CORS.xml │ │ │ └── mobile-timeline.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ └── mobile-timeline.js │ │ ├── targets │ │ │ └── default.xml │ │ └── twitter-mobile-timeline.xml │ ├── demo │ │ ├── demo.css │ │ ├── demo.js │ │ └── index.html │ ├── deploy.sh │ └── invoke.sh ├── twitter-oembed │ ├── README.md │ ├── apiproxy │ │ ├── policies │ │ │ ├── cors.xml │ │ │ └── search-oembed.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ └── search-oembed.js │ │ ├── targets │ │ │ └── default.xml │ │ └── twitter-oembed.xml │ ├── demo │ │ ├── demo.js │ │ └── index.html │ └── deploy.sh ├── variables │ ├── README.md │ ├── apiproxy │ │ ├── policies │ │ │ ├── parse-json-response.xml │ │ │ ├── parse-xml-response.xml │ │ │ ├── read-variables.xml │ │ │ ├── variables.xml │ │ │ └── xmltojson.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ └── read-variables.js │ │ ├── targets │ │ │ └── default.xml │ │ └── variables.xml │ ├── deploy.sh │ ├── invoke.sh │ └── variables.zip └── xmltojson │ ├── README.md │ ├── apiproxy │ ├── policies │ │ └── xmltojson.xml │ ├── proxies │ │ └── default.xml │ ├── targets │ │ └── default.xml │ └── xmltojson.xml │ ├── deploy.sh │ └── invoke.sh ├── samplets ├── Extract-Variables │ ├── README.md │ ├── apiproxy │ │ ├── policies │ │ │ ├── AM-Remove-Inbound-Headers.xml │ │ │ ├── EV-Path-Component.xml │ │ │ ├── EV-Query-Param.xml │ │ │ ├── JS-Produce-Response-for-Read-Query-Param.xml │ │ │ ├── JS-Produce-Response-for-Read-URI-Path.xml │ │ │ ├── RF-Invalid-Query-Param.xml │ │ │ └── RF-Unknown-Request.xml │ │ ├── proxies │ │ │ └── default.xml │ │ ├── resources │ │ │ └── jsc │ │ │ │ ├── summarize-for-read-uri-path.js │ │ │ │ └── summarize-read-query-param.js │ │ └── samplet-extract-variables.xml │ ├── deploy.sh │ ├── docs │ │ ├── Extract-Query-Param.md │ │ └── Extract-URI-Part.md │ └── invoke.sh └── README.md ├── schemas ├── README.md ├── all.xsd ├── all_policies.xsd ├── configuration │ └── configuration_schemas.xsd └── policy │ ├── access_control.xsd │ ├── access_entity.xsd │ ├── assign_message.xsd │ ├── basic_authentication.xsd │ ├── cache.xsd │ ├── extract_variables.xsd │ ├── flow_callout.xsd │ ├── java_callout.xsd │ ├── java_script.xsd │ ├── json_threat_protection.xsd │ ├── json_to_xml.xsd │ ├── jwt.xsd │ ├── keyvaluemap-operations.xsd │ ├── ldap.xsd │ ├── message_logging.xsd │ ├── message_validation.xsd │ ├── oas_validation.xsd │ ├── oauth_v1.xsd │ ├── oauth_v2_verify_api_key.xsd │ ├── quota_spike_ratelimit.xsd │ ├── raise_fault.xsd │ ├── regular_expression_protection.xsd │ ├── saml.xsd │ ├── script.xsd │ ├── service_callout.xsd │ ├── statistics_collector.xsd │ ├── xml_threat_protection.xsd │ ├── xml_to_json.xsd │ └── xsl.xsd ├── setup ├── README.md ├── deploy.sh ├── deploy_all.sh ├── provisioning │ ├── CheapProduct.json │ ├── ExpensiveProduct.json │ ├── FreeProduct.json │ ├── README.md │ ├── cleanup.sh │ ├── joe-app-product.xml │ ├── joe-app.xml │ ├── joe.xml │ ├── setProxy.sh │ ├── setup.sh │ ├── thomas-app-product.xml │ ├── thomas-app.xml │ └── thomas.xml ├── provisioning_for_oauth.sh ├── setenv.sh └── userconf.sh ├── tools ├── README.md ├── api-platform-samples.json.postman_collection ├── deploy-sharedflow.py ├── deploy.py ├── org-snapshot │ ├── JSONTokenize.sh │ ├── README.md │ ├── apigee-getorg.sh │ ├── apigee-org-env.sh │ ├── apigee-org-lib.sh │ └── apigee-orgdef.cfg └── proxy_gen.sh └── tutorial-demos ├── README.md ├── firestore-demo ├── README.md ├── proxies │ └── Firestore Quickstart │ │ └── apiproxy │ │ ├── Firestore Quickstart.xml │ │ ├── manifests │ │ └── manifest.xml │ │ ├── policies │ │ ├── Add-Bearer-Token.xml │ │ ├── Assign-Message-2.xml │ │ ├── Extract-Token.xml │ │ ├── Generate-JWT-1.xml │ │ ├── Get-Token.xml │ │ ├── Get-Url-Variables.xml │ │ ├── Remove-Key.xml │ │ ├── Set-Firestore-Variables.xml │ │ ├── Set-Verb.xml │ │ ├── Verify-API-Key-1.xml │ │ ├── set-request.xml │ │ └── set-response.xml │ │ ├── proxies │ │ └── default.xml │ │ ├── resources │ │ └── jsc │ │ │ ├── set-request.js │ │ │ └── set-response.js │ │ └── targets │ │ └── default.xml ├── shared-flows │ └── Firestore Adapter │ │ └── sharedflowbundle │ │ ├── Firebase-Adapter.xml │ │ ├── manifests │ │ └── manifest.xml │ │ ├── policies │ │ ├── Add-Bearer-Token.xml │ │ ├── Assign-Google-Key.xml │ │ ├── Convert-Response.xml │ │ ├── Extract-Token.xml │ │ ├── Firestore-API.xml │ │ ├── Generate-JWT-1.xml │ │ ├── Get-Token.xml │ │ ├── PATCH-Firestore-API.xml │ │ ├── Set-Body.xml │ │ └── Set-Response.xml │ │ ├── resources │ │ └── jsc │ │ │ ├── set-body.js │ │ │ └── set-response.js │ │ └── sharedflows │ │ └── default.xml └── specs │ └── jokes-api.yaml └── maps-demo ├── README.md ├── apiproxy ├── Kaleo-Map.xml ├── manifests │ └── manifest.xml ├── policies │ ├── Get-Maps-Key.xml │ ├── Get-Weather-Key.xml │ ├── Get-lat-lng.xml │ ├── Weather-Callout.xml │ ├── add-cors.xml │ ├── add-pizza.xml │ ├── add-weather.xml │ ├── impose-quota.xml │ ├── mock-response.xml │ ├── remove-query-param-apikey.xml │ ├── set-client.xml │ ├── set-gmaps-key.xml │ ├── set-maps-js-url.xml │ ├── set-maps-url.xml │ └── verify-api-key.xml ├── proxies │ └── default.xml ├── resources │ └── jsc │ │ ├── add-pizza.js │ │ ├── add-weather.js │ │ ├── set-client.js │ │ ├── set-maps-js-url.js │ │ └── set-maps-url.js └── targets │ └── gmaps.xml ├── frontend ├── main.go └── public │ └── index.html └── img └── maps-demo.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/README.md -------------------------------------------------------------------------------- /default-proxies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/README.md -------------------------------------------------------------------------------- /default-proxies/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/README.md -------------------------------------------------------------------------------- /default-proxies/helloworld/apiproxy/helloworld.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/apiproxy/helloworld.xml -------------------------------------------------------------------------------- /default-proxies/helloworld/apiproxy/policies/add-cors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/apiproxy/policies/add-cors.xml -------------------------------------------------------------------------------- /default-proxies/helloworld/apiproxy/policies/check-quota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/apiproxy/policies/check-quota.xml -------------------------------------------------------------------------------- /default-proxies/helloworld/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /default-proxies/helloworld/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /default-proxies/helloworld/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/deploy.sh -------------------------------------------------------------------------------- /default-proxies/helloworld/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/gulpfile.js -------------------------------------------------------------------------------- /default-proxies/helloworld/helloworld.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/helloworld.zip -------------------------------------------------------------------------------- /default-proxies/helloworld/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/invoke.sh -------------------------------------------------------------------------------- /default-proxies/helloworld/openapi/mocktarget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/openapi/mocktarget.yaml -------------------------------------------------------------------------------- /default-proxies/helloworld/openapi/mocktarget3.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/openapi/mocktarget3.0.yaml -------------------------------------------------------------------------------- /default-proxies/helloworld/openapi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/openapi/readme.md -------------------------------------------------------------------------------- /default-proxies/helloworld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/package.json -------------------------------------------------------------------------------- /default-proxies/helloworld/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/test/test.html -------------------------------------------------------------------------------- /default-proxies/helloworld/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/helloworld/test/test.js -------------------------------------------------------------------------------- /default-proxies/oauth/apiproxy/oauth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/oauth/apiproxy/oauth.xml -------------------------------------------------------------------------------- /default-proxies/oauth/apiproxy/policies/RefreshAccessToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/oauth/apiproxy/policies/RefreshAccessToken.xml -------------------------------------------------------------------------------- /default-proxies/oauth/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/oauth/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /default-proxies/oauth/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/oauth/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /default-proxies/oauth/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/oauth/deploy.sh -------------------------------------------------------------------------------- /default-proxies/oauth/oauth.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/default-proxies/oauth/oauth.zip -------------------------------------------------------------------------------- /doc-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/README.md -------------------------------------------------------------------------------- /doc-samples/hosted-targets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/hosted-targets/README.md -------------------------------------------------------------------------------- /doc-samples/hosted-targets/node-hosted-custom-deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/hosted-targets/node-hosted-custom-deps/README.md -------------------------------------------------------------------------------- /doc-samples/hosted-targets/node-hosted-custom-deps/myapp/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/hosted-targets/node-hosted-custom-deps/myapp/app.yaml -------------------------------------------------------------------------------- /doc-samples/hosted-targets/node-hosted-custom-deps/myapp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/hosted-targets/node-hosted-custom-deps/myapp/index.js -------------------------------------------------------------------------------- /doc-samples/hosted-targets/node-hosted-express/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/hosted-targets/node-hosted-express/README.md -------------------------------------------------------------------------------- /doc-samples/hosted-targets/node-hosted-express/deploy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/hosted-targets/node-hosted-express/deploy.txt -------------------------------------------------------------------------------- /doc-samples/hosted-targets/node-hosted-hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/hosted-targets/node-hosted-hello/README.md -------------------------------------------------------------------------------- /doc-samples/images/postman-oauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/images/postman-oauth.png -------------------------------------------------------------------------------- /doc-samples/java-cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/README.md -------------------------------------------------------------------------------- /doc-samples/java-cookbook/apiproxy/java-cookbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/apiproxy/java-cookbook.xml -------------------------------------------------------------------------------- /doc-samples/java-cookbook/apiproxy/policies/RF-Unknown-Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/apiproxy/policies/RF-Unknown-Request.xml -------------------------------------------------------------------------------- /doc-samples/java-cookbook/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/java-cookbook/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /doc-samples/java-cookbook/buildsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/buildsetup.sh -------------------------------------------------------------------------------- /doc-samples/java-cookbook/callout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/callout/pom.xml -------------------------------------------------------------------------------- /doc-samples/java-cookbook/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/deploy.sh -------------------------------------------------------------------------------- /doc-samples/java-cookbook/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/invoke.sh -------------------------------------------------------------------------------- /doc-samples/java-cookbook/javadocs-javacallout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/javadocs-javacallout/README.md -------------------------------------------------------------------------------- /doc-samples/java-cookbook/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/lib/README.md -------------------------------------------------------------------------------- /doc-samples/java-cookbook/lib/expressions-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/lib/expressions-1.0.0.jar -------------------------------------------------------------------------------- /doc-samples/java-cookbook/lib/message-flow-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-cookbook/lib/message-flow-1.0.0.jar -------------------------------------------------------------------------------- /doc-samples/java-error/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/README.md -------------------------------------------------------------------------------- /doc-samples/java-error/apiproxy/java-error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/apiproxy/java-error.xml -------------------------------------------------------------------------------- /doc-samples/java-error/apiproxy/policies/AM-Remove-All-Headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/apiproxy/policies/AM-Remove-All-Headers.xml -------------------------------------------------------------------------------- /doc-samples/java-error/apiproxy/policies/Java-Produce-Greeting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/apiproxy/policies/Java-Produce-Greeting.xml -------------------------------------------------------------------------------- /doc-samples/java-error/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/java-error/buildsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/buildsetup.sh -------------------------------------------------------------------------------- /doc-samples/java-error/callout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/callout/pom.xml -------------------------------------------------------------------------------- /doc-samples/java-error/callout/src/main/java/JavaError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/callout/src/main/java/JavaError.java -------------------------------------------------------------------------------- /doc-samples/java-error/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/deploy.sh -------------------------------------------------------------------------------- /doc-samples/java-error/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/invoke.sh -------------------------------------------------------------------------------- /doc-samples/java-error/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/lib/README.md -------------------------------------------------------------------------------- /doc-samples/java-error/lib/expressions-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/lib/expressions-1.0.0.jar -------------------------------------------------------------------------------- /doc-samples/java-error/lib/message-flow-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-error/lib/message-flow-1.0.0.jar -------------------------------------------------------------------------------- /doc-samples/java-hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/README.md -------------------------------------------------------------------------------- /doc-samples/java-hello/apiproxy/java-cookbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/apiproxy/java-cookbook.xml -------------------------------------------------------------------------------- /doc-samples/java-hello/apiproxy/policies/Java-Hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/apiproxy/policies/Java-Hello.xml -------------------------------------------------------------------------------- /doc-samples/java-hello/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/java-hello/buildsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/buildsetup.sh -------------------------------------------------------------------------------- /doc-samples/java-hello/callout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/callout/pom.xml -------------------------------------------------------------------------------- /doc-samples/java-hello/callout/src/main/java/HelloJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/callout/src/main/java/HelloJava.java -------------------------------------------------------------------------------- /doc-samples/java-hello/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/deploy.sh -------------------------------------------------------------------------------- /doc-samples/java-hello/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/invoke.sh -------------------------------------------------------------------------------- /doc-samples/java-hello/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/lib/README.md -------------------------------------------------------------------------------- /doc-samples/java-hello/lib/expressions-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/lib/expressions-1.0.0.jar -------------------------------------------------------------------------------- /doc-samples/java-hello/lib/message-flow-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-hello/lib/message-flow-1.0.0.jar -------------------------------------------------------------------------------- /doc-samples/java-properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/README.md -------------------------------------------------------------------------------- /doc-samples/java-properties/apiproxy/java-properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/apiproxy/java-properties.xml -------------------------------------------------------------------------------- /doc-samples/java-properties/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/java-properties/buildsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/buildsetup.sh -------------------------------------------------------------------------------- /doc-samples/java-properties/callout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/callout/pom.xml -------------------------------------------------------------------------------- /doc-samples/java-properties/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/deploy.sh -------------------------------------------------------------------------------- /doc-samples/java-properties/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/invoke.sh -------------------------------------------------------------------------------- /doc-samples/java-properties/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/lib/README.md -------------------------------------------------------------------------------- /doc-samples/java-properties/lib/expressions-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/lib/expressions-1.0.0.jar -------------------------------------------------------------------------------- /doc-samples/java-properties/lib/message-flow-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/java-properties/lib/message-flow-1.0.0.jar -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/README.md -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/apiproxy/javascript-cookbook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/apiproxy/javascript-cookbook.xml -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/apiproxy/policies/minimize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/apiproxy/policies/minimize.xml -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/apiproxy/policies/setHeaders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/apiproxy/policies/setHeaders.xml -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/apiproxy/policies/transform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/apiproxy/policies/transform.xml -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/apiproxy/resources/jsc/minimize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/apiproxy/resources/jsc/minimize.js -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/deploy.sh -------------------------------------------------------------------------------- /doc-samples/javascript-cookbook/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-cookbook/invoke.sh -------------------------------------------------------------------------------- /doc-samples/javascript-mashup-cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-mashup-cookbook/README.md -------------------------------------------------------------------------------- /doc-samples/javascript-mashup-cookbook/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-mashup-cookbook/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/javascript-mashup-cookbook/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-mashup-cookbook/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /doc-samples/javascript-mashup-cookbook/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-mashup-cookbook/deploy.sh -------------------------------------------------------------------------------- /doc-samples/javascript-mashup-cookbook/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/javascript-mashup-cookbook/invoke.sh -------------------------------------------------------------------------------- /doc-samples/nodejs-baas-cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-baas-cookbook/README.md -------------------------------------------------------------------------------- /doc-samples/nodejs-baas-cookbook/apiproxy/employees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-baas-cookbook/apiproxy/employees.xml -------------------------------------------------------------------------------- /doc-samples/nodejs-baas-cookbook/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-baas-cookbook/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/nodejs-baas-cookbook/apiproxy/resources/node/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-baas-cookbook/apiproxy/resources/node/config.js -------------------------------------------------------------------------------- /doc-samples/nodejs-baas-cookbook/apiproxy/resources/node/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-baas-cookbook/apiproxy/resources/node/server.js -------------------------------------------------------------------------------- /doc-samples/nodejs-baas-cookbook/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-baas-cookbook/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /doc-samples/nodejs-baas-cookbook/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-baas-cookbook/deploy.sh -------------------------------------------------------------------------------- /doc-samples/nodejs-baas-cookbook/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-baas-cookbook/invoke.sh -------------------------------------------------------------------------------- /doc-samples/nodejs-hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-hello/README.md -------------------------------------------------------------------------------- /doc-samples/nodejs-hello/apiproxy/Hello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-hello/apiproxy/Hello.xml -------------------------------------------------------------------------------- /doc-samples/nodejs-hello/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-hello/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/nodejs-hello/apiproxy/resources/node/hello-world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-hello/apiproxy/resources/node/hello-world.js -------------------------------------------------------------------------------- /doc-samples/nodejs-hello/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-hello/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /doc-samples/nodejs-hello/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-hello/deploy.sh -------------------------------------------------------------------------------- /doc-samples/nodejs-hello/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/nodejs-hello/invoke.sh -------------------------------------------------------------------------------- /doc-samples/oauth-doc-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/oauth-doc-examples/README.md -------------------------------------------------------------------------------- /doc-samples/oauth-doc-examples/apiproxy/OAuth-Doc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/oauth-doc-examples/apiproxy/OAuth-Doc.xml -------------------------------------------------------------------------------- /doc-samples/oauth-doc-examples/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/oauth-doc-examples/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/oauth-doc-examples/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/oauth-doc-examples/deploy.sh -------------------------------------------------------------------------------- /doc-samples/policy-mashup-cookbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/policy-mashup-cookbook/README.md -------------------------------------------------------------------------------- /doc-samples/policy-mashup-cookbook/apiproxy/policies/xmltojson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/policy-mashup-cookbook/apiproxy/policies/xmltojson.xml -------------------------------------------------------------------------------- /doc-samples/policy-mashup-cookbook/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/policy-mashup-cookbook/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /doc-samples/policy-mashup-cookbook/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/policy-mashup-cookbook/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /doc-samples/policy-mashup-cookbook/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/policy-mashup-cookbook/deploy.sh -------------------------------------------------------------------------------- /doc-samples/policy-mashup-cookbook/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/doc-samples/policy-mashup-cookbook/invoke.sh -------------------------------------------------------------------------------- /docs/javadocs-javacallout.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout.zip -------------------------------------------------------------------------------- /docs/javadocs-javacallout/MessageContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/MessageContext.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/allclasses-frame.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/com/apigee/flow/execution/Action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/com/apigee/flow/execution/Action.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/com/apigee/flow/execution/Callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/com/apigee/flow/execution/Callback.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/com/apigee/flow/message/FlowContext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/com/apigee/flow/message/FlowContext.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/com/apigee/flow/message/Message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/com/apigee/flow/message/Message.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/com/apigee/flow/message/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/com/apigee/flow/message/package-tree.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/com/apigee/flow/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/com/apigee/flow/package-frame.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/com/apigee/flow/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/com/apigee/flow/package-summary.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/com/apigee/flow/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/com/apigee/flow/package-tree.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/constant-values.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/deprecated-list.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/help-doc.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/index-all.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/index.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/overview-frame.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/overview-summary.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/overview-tree.html -------------------------------------------------------------------------------- /docs/javadocs-javacallout/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/package-list -------------------------------------------------------------------------------- /docs/javadocs-javacallout/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/resources/inherit.gif -------------------------------------------------------------------------------- /docs/javadocs-javacallout/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/script.js -------------------------------------------------------------------------------- /docs/javadocs-javacallout/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/docs/javadocs-javacallout/stylesheet.css -------------------------------------------------------------------------------- /edge-ux/basic-apikey-security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/basic-apikey-security/README.md -------------------------------------------------------------------------------- /edge-ux/basic-apikey-security/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/basic-apikey-security/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /edge-ux/basic-apikey-security/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/basic-apikey-security/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /edge-ux/basic-apikey-security/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/basic-apikey-security/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /edge-ux/basic-apikey-security/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/basic-apikey-security/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /edge-ux/basic-apikey-security/edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/basic-apikey-security/edge.js -------------------------------------------------------------------------------- /edge-ux/basic-apikey-security/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/basic-apikey-security/gulpfile.js -------------------------------------------------------------------------------- /edge-ux/basic-apikey-security/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/basic-apikey-security/invoke.sh -------------------------------------------------------------------------------- /edge-ux/basic-apikey-security/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/basic-apikey-security/package.json -------------------------------------------------------------------------------- /edge-ux/enforce-quota-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/enforce-quota-simple/README.md -------------------------------------------------------------------------------- /edge-ux/enforce-quota-simple/apiproxy/enforce-quota-simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/enforce-quota-simple/apiproxy/enforce-quota-simple.xml -------------------------------------------------------------------------------- /edge-ux/enforce-quota-simple/apiproxy/policies/EnforceQuota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/enforce-quota-simple/apiproxy/policies/EnforceQuota.xml -------------------------------------------------------------------------------- /edge-ux/enforce-quota-simple/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/enforce-quota-simple/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /edge-ux/enforce-quota-simple/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/enforce-quota-simple/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /edge-ux/enforce-quota-simple/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/enforce-quota-simple/gulpfile.js -------------------------------------------------------------------------------- /edge-ux/enforce-quota-simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/enforce-quota-simple/package.json -------------------------------------------------------------------------------- /edge-ux/extract-json-payload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/extract-json-payload/README.md -------------------------------------------------------------------------------- /edge-ux/extract-json-payload/apiproxy/extract-json-payload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/extract-json-payload/apiproxy/extract-json-payload.xml -------------------------------------------------------------------------------- /edge-ux/extract-json-payload/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/extract-json-payload/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /edge-ux/extract-json-payload/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/extract-json-payload/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /edge-ux/extract-json-payload/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/extract-json-payload/gulpfile.js -------------------------------------------------------------------------------- /edge-ux/extract-json-payload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/extract-json-payload/package.json -------------------------------------------------------------------------------- /edge-ux/fault-handling-apikey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/fault-handling-apikey/README.md -------------------------------------------------------------------------------- /edge-ux/fault-handling-apikey/apiproxy/fault-handling-apikey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/fault-handling-apikey/apiproxy/fault-handling-apikey.xml -------------------------------------------------------------------------------- /edge-ux/fault-handling-apikey/apiproxy/policies/VerifyAPIKey-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/fault-handling-apikey/apiproxy/policies/VerifyAPIKey-1.xml -------------------------------------------------------------------------------- /edge-ux/fault-handling-apikey/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/fault-handling-apikey/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /edge-ux/fault-handling-apikey/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/fault-handling-apikey/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /edge-ux/fault-handling-apikey/edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/fault-handling-apikey/edge.js -------------------------------------------------------------------------------- /edge-ux/fault-handling-apikey/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/fault-handling-apikey/gulpfile.js -------------------------------------------------------------------------------- /edge-ux/fault-handling-apikey/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/fault-handling-apikey/package.json -------------------------------------------------------------------------------- /edge-ux/proxy-to-target/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/proxy-to-target/README.md -------------------------------------------------------------------------------- /edge-ux/proxy-to-target/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/proxy-to-target/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /edge-ux/proxy-to-target/apiproxy/proxy-to-target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/proxy-to-target/apiproxy/proxy-to-target.xml -------------------------------------------------------------------------------- /edge-ux/proxy-to-target/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/proxy-to-target/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /edge-ux/proxy-to-target/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/proxy-to-target/gulpfile.js -------------------------------------------------------------------------------- /edge-ux/proxy-to-target/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/proxy-to-target/package.json -------------------------------------------------------------------------------- /edge-ux/proxy-to-target/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/proxy-to-target/test/test.html -------------------------------------------------------------------------------- /edge-ux/proxy-to-target/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/proxy-to-target/test/test.js -------------------------------------------------------------------------------- /edge-ux/response-cache-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/response-cache-simple/README.md -------------------------------------------------------------------------------- /edge-ux/response-cache-simple/apiproxy/policies/ResponseCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/response-cache-simple/apiproxy/policies/ResponseCache.xml -------------------------------------------------------------------------------- /edge-ux/response-cache-simple/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/response-cache-simple/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /edge-ux/response-cache-simple/apiproxy/response-cache-simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/response-cache-simple/apiproxy/response-cache-simple.xml -------------------------------------------------------------------------------- /edge-ux/response-cache-simple/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/response-cache-simple/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /edge-ux/response-cache-simple/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/response-cache-simple/gulpfile.js -------------------------------------------------------------------------------- /edge-ux/response-cache-simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/edge-ux/response-cache-simple/package.json -------------------------------------------------------------------------------- /images/access-entity-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/access-entity-trace.png -------------------------------------------------------------------------------- /images/apigee-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/apigee-community.png -------------------------------------------------------------------------------- /images/apigee-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/apigee-logo.png -------------------------------------------------------------------------------- /images/apikey-quota-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/apikey-quota-trace.png -------------------------------------------------------------------------------- /images/icon-access-entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/icon-access-entity.jpg -------------------------------------------------------------------------------- /images/icon-assign-message.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/icon-assign-message.jpg -------------------------------------------------------------------------------- /images/icon-policy-javascript.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/icon-policy-javascript.jpg -------------------------------------------------------------------------------- /images/icon-policy-quota.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/icon-policy-quota.jpg -------------------------------------------------------------------------------- /images/icon-policy-security.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/icon-policy-security.jpg -------------------------------------------------------------------------------- /images/icon-xml-to-json.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/icon-xml-to-json.jpg -------------------------------------------------------------------------------- /images/icon_policy_extract-variable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/icon_policy_extract-variable.jpg -------------------------------------------------------------------------------- /images/icon_policy_python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/icon_policy_python.jpg -------------------------------------------------------------------------------- /images/icon_policy_traffic-management.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/icon_policy_traffic-management.jpg -------------------------------------------------------------------------------- /images/javascript-include-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/javascript-include-trace.png -------------------------------------------------------------------------------- /images/navigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/navigator.png -------------------------------------------------------------------------------- /images/pagination-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/pagination-trace.png -------------------------------------------------------------------------------- /images/python-script-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/python-script-trace.png -------------------------------------------------------------------------------- /images/quota-1-product-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/quota-1-product-settings.png -------------------------------------------------------------------------------- /images/sample-proxies-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/sample-proxies-1.png -------------------------------------------------------------------------------- /images/simple-python-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/simple-python-trace.png -------------------------------------------------------------------------------- /images/target-reroute-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/target-reroute-trace.png -------------------------------------------------------------------------------- /images/variables-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/variables-trace.png -------------------------------------------------------------------------------- /images/xmltojson-trace-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/xmltojson-trace-2.png -------------------------------------------------------------------------------- /images/xmltojson-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/images/xmltojson-trace.png -------------------------------------------------------------------------------- /learn-edge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/README.md -------------------------------------------------------------------------------- /learn-edge/apikey-security-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-1/README.md -------------------------------------------------------------------------------- /learn-edge/apikey-security-1/apikey-security-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-1/apikey-security-1.zip -------------------------------------------------------------------------------- /learn-edge/apikey-security-1/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-1/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/apikey-security-1/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-1/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/apikey-security-1/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-1/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/apikey-security-1/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-1/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/apikey-security-1/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-1/deploy.sh -------------------------------------------------------------------------------- /learn-edge/apikey-security-1/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-1/invoke.sh -------------------------------------------------------------------------------- /learn-edge/apikey-security-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-2/README.md -------------------------------------------------------------------------------- /learn-edge/apikey-security-2/apikey-security-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-2/apikey-security-2.zip -------------------------------------------------------------------------------- /learn-edge/apikey-security-2/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-2/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/apikey-security-2/apiproxy/policies/RemoveAPIKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-2/apiproxy/policies/RemoveAPIKey.xml -------------------------------------------------------------------------------- /learn-edge/apikey-security-2/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-2/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/apikey-security-2/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-2/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/apikey-security-2/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-2/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/apikey-security-2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-2/deploy.sh -------------------------------------------------------------------------------- /learn-edge/apikey-security-2/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/apikey-security-2/invoke.sh -------------------------------------------------------------------------------- /learn-edge/extract-json-payload-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload-2/README.md -------------------------------------------------------------------------------- /learn-edge/extract-json-payload-2/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload-2/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/extract-json-payload-2/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload-2/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/extract-json-payload-2/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload-2/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/extract-json-payload-2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload-2/deploy.sh -------------------------------------------------------------------------------- /learn-edge/extract-json-payload-2/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload-2/invoke.sh -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/README.md -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/apiproxy/policies/InvalidApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/apiproxy/policies/InvalidApiKey.xml -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/apiproxy/policies/ResponseCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/apiproxy/policies/ResponseCache.xml -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/deploy.sh -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/extract-json-payload.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/extract-json-payload.zip -------------------------------------------------------------------------------- /learn-edge/extract-json-payload/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-json-payload/invoke.sh -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/README.md -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/apiproxy/extract-xml-payload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/apiproxy/extract-xml-payload.xml -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/apiproxy/policies/EV-CompanyId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/apiproxy/policies/EV-CompanyId.xml -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/company_info_body.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/company_info_body.xml -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/deploy.sh -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/directions_body.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/directions_body.xml -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/extract-xml-payload.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/extract-xml-payload.zip -------------------------------------------------------------------------------- /learn-edge/extract-xml-payload/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/extract-xml-payload/invoke.sh -------------------------------------------------------------------------------- /learn-edge/fault-handling-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-1/README.md -------------------------------------------------------------------------------- /learn-edge/fault-handling-1/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-1/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-1/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-1/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-1/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-1/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-1/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-1/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-1/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-1/deploy.sh -------------------------------------------------------------------------------- /learn-edge/fault-handling-1/fault-handling-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-1/fault-handling-1.zip -------------------------------------------------------------------------------- /learn-edge/fault-handling-1/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-1/invoke.sh -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/README.md -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-A.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-A.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-B.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-B.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-C.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-C.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-X.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-X.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-Y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-Y.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-Z.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/policies/AM-BadParam-Z.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/policies/AM-Remove-API-Key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/policies/AM-Remove-API-Key.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/deploy.sh -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/fault-handling-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/fault-handling-2.zip -------------------------------------------------------------------------------- /learn-edge/fault-handling-2/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/fault-handling-2/invoke.sh -------------------------------------------------------------------------------- /learn-edge/provisioning/LearnEdgeProduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/provisioning/LearnEdgeProduct.json -------------------------------------------------------------------------------- /learn-edge/provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/provisioning/README.md -------------------------------------------------------------------------------- /learn-edge/provisioning/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/provisioning/cleanup.sh -------------------------------------------------------------------------------- /learn-edge/provisioning/learn-edge-app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/provisioning/learn-edge-app.xml -------------------------------------------------------------------------------- /learn-edge/provisioning/learn-edge-developer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/provisioning/learn-edge-developer.xml -------------------------------------------------------------------------------- /learn-edge/provisioning/learn-edge-product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/provisioning/learn-edge-product.xml -------------------------------------------------------------------------------- /learn-edge/provisioning/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/provisioning/setup.sh -------------------------------------------------------------------------------- /learn-edge/proxy-to-a-target/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/proxy-to-a-target/README.md -------------------------------------------------------------------------------- /learn-edge/proxy-to-a-target/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/proxy-to-a-target/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/proxy-to-a-target/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/proxy-to-a-target/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/proxy-to-a-target/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/proxy-to-a-target/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/proxy-to-a-target/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/proxy-to-a-target/deploy.sh -------------------------------------------------------------------------------- /learn-edge/proxy-to-a-target/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/proxy-to-a-target/invoke.sh -------------------------------------------------------------------------------- /learn-edge/proxy-to-a-target/proxy-to-a-target.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/proxy-to-a-target/proxy-to-a-target.zip -------------------------------------------------------------------------------- /learn-edge/quota-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/quota-1/README.md -------------------------------------------------------------------------------- /learn-edge/quota-1/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/quota-1/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/quota-1/apiproxy/policies/EnforceQuota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/quota-1/apiproxy/policies/EnforceQuota.xml -------------------------------------------------------------------------------- /learn-edge/quota-1/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/quota-1/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/quota-1/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/quota-1/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/quota-1/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/quota-1/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/quota-1/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/quota-1/deploy.sh -------------------------------------------------------------------------------- /learn-edge/quota-1/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/quota-1/invoke.sh -------------------------------------------------------------------------------- /learn-edge/quota-1/quota-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/quota-1/quota-1.zip -------------------------------------------------------------------------------- /learn-edge/response-cache-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-1/README.md -------------------------------------------------------------------------------- /learn-edge/response-cache-1/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-1/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-1/apiproxy/policies/ResponseCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-1/apiproxy/policies/ResponseCache.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-1/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-1/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-1/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-1/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-1/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-1/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-1/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-1/deploy.sh -------------------------------------------------------------------------------- /learn-edge/response-cache-1/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-1/invoke.sh -------------------------------------------------------------------------------- /learn-edge/response-cache-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-2/README.md -------------------------------------------------------------------------------- /learn-edge/response-cache-2/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-2/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-2/apiproxy/policies/ResponseCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-2/apiproxy/policies/ResponseCache.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-2/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-2/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-2/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-2/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-2/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-2/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /learn-edge/response-cache-2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-2/deploy.sh -------------------------------------------------------------------------------- /learn-edge/response-cache-2/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-2/invoke.sh -------------------------------------------------------------------------------- /learn-edge/response-cache-2/response-cache-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/response-cache-2/response-cache-2.zip -------------------------------------------------------------------------------- /learn-edge/scripts/deploy_proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/scripts/deploy_proxy.sh -------------------------------------------------------------------------------- /learn-edge/scripts/set_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/scripts/set_env.sh -------------------------------------------------------------------------------- /learn-edge/scripts/verify_credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/scripts/verify_credentials.sh -------------------------------------------------------------------------------- /learn-edge/scripts/verify_provisioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/scripts/verify_provisioning.sh -------------------------------------------------------------------------------- /learn-edge/service-callout-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-1/README.md -------------------------------------------------------------------------------- /learn-edge/service-callout-1/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-1/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/service-callout-1/apiproxy/policies/AM-Build-Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-1/apiproxy/policies/AM-Build-Request.xml -------------------------------------------------------------------------------- /learn-edge/service-callout-1/apiproxy/policies/VerifyApiKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-1/apiproxy/policies/VerifyApiKey.xml -------------------------------------------------------------------------------- /learn-edge/service-callout-1/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-1/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/service-callout-1/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-1/deploy.sh -------------------------------------------------------------------------------- /learn-edge/service-callout-1/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-1/invoke.sh -------------------------------------------------------------------------------- /learn-edge/service-callout-1/service-callout-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-1/service-callout-1.zip -------------------------------------------------------------------------------- /learn-edge/service-callout-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-2/README.md -------------------------------------------------------------------------------- /learn-edge/service-callout-2/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-2/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/service-callout-2/apiproxy/policies/AM-BuildRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-2/apiproxy/policies/AM-BuildRequest.xml -------------------------------------------------------------------------------- /learn-edge/service-callout-2/apiproxy/policies/VerifyAPIKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-2/apiproxy/policies/VerifyAPIKey.xml -------------------------------------------------------------------------------- /learn-edge/service-callout-2/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-2/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/service-callout-2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-2/deploy.sh -------------------------------------------------------------------------------- /learn-edge/service-callout-2/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/service-callout-2/invoke.sh -------------------------------------------------------------------------------- /learn-edge/simplest-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/simplest-proxy/README.md -------------------------------------------------------------------------------- /learn-edge/simplest-proxy/apiproxy/learn-edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/simplest-proxy/apiproxy/learn-edge.xml -------------------------------------------------------------------------------- /learn-edge/simplest-proxy/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/simplest-proxy/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /learn-edge/simplest-proxy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/simplest-proxy/deploy.sh -------------------------------------------------------------------------------- /learn-edge/simplest-proxy/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/simplest-proxy/invoke.sh -------------------------------------------------------------------------------- /learn-edge/simplest-proxy/simplest-proxy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/learn-edge/simplest-proxy/simplest-proxy.zip -------------------------------------------------------------------------------- /perf-proxies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/README.md -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/perf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/perf.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/AM-JwtAuthorization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/AM-JwtAuthorization.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/AM-OAuthJwtSecrets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/AM-OAuthJwtSecrets.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/AM-PrivateKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/AM-PrivateKey.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/AM-Response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/AM-Response.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/AssignSCResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/AssignSCResponse.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/ExtractSCResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/ExtractSCResponse.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/FlowCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/FlowCallout.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/GenerateAccessToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/GenerateAccessToken.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/GenerateJWT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/GenerateJWT.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/GraphQL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/GraphQL.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/JSHeader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/JSHeader.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/LimitByIP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/LimitByIP.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/LimitByQuota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/LimitByQuota.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/LimitBySlowQuota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/LimitBySlowQuota.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/LimitTotal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/LimitTotal.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/RF-MissingParam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/RF-MissingParam.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/Raise-Fault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/Raise-Fault.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/RejectURI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/RejectURI.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/RemoveQueryParams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/RemoveQueryParams.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/ResponseCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/ResponseCache.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/ResponsePayload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/ResponsePayload.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/SC-BuildRequest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/SC-BuildRequest.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/ScJSON.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/ScJSON.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/ServiceCallout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/ServiceCallout.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/SetCacheHeader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/SetCacheHeader.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/ValidateKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/ValidateKey.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/ValidateOAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/ValidateOAuth.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/VerifyJWT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/VerifyJWT.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/VerifyJwtAccessToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/VerifyJwtAccessToken.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/XSLT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/XSLT.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/add-cors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/add-cors.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/assign-header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/assign-header.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/getURL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/getURL.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/policies/putURL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/policies/putURL.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/proxies/proxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/proxies/proxy.xml -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/resources/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/resources/graphql/schema.graphql -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/resources/js/jsheader.js: -------------------------------------------------------------------------------- 1 | message.setHeader("X-Test-Name", "Processed by Apigee") 2 | 3 | -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/resources/xsl/weatherxsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/resources/xsl/weatherxsl -------------------------------------------------------------------------------- /perf-proxies/perfproxy/apiproxy/targets/static.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/perf-proxies/perfproxy/apiproxy/targets/static.xml -------------------------------------------------------------------------------- /sample-proxies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/README.md -------------------------------------------------------------------------------- /sample-proxies/access-entity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/access-entity/README.md -------------------------------------------------------------------------------- /sample-proxies/access-entity/apiproxy/access-entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/access-entity/apiproxy/access-entity.xml -------------------------------------------------------------------------------- /sample-proxies/access-entity/apiproxy/policies/EchoVariables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/access-entity/apiproxy/policies/EchoVariables.xml -------------------------------------------------------------------------------- /sample-proxies/access-entity/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/access-entity/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/access-entity/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/access-entity/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/access-entity/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/access-entity/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/advanced-api-services/token-gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/advanced-api-services/token-gen/README.md -------------------------------------------------------------------------------- /sample-proxies/advanced-api-services/token-gen/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/advanced-api-services/token-gen/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/advanced-api-services/token-gen/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/advanced-api-services/token-gen/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/advanced-api-services/token-validate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/advanced-api-services/token-validate/README.md -------------------------------------------------------------------------------- /sample-proxies/advanced-api-services/token-validate/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/advanced-api-services/token-validate/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/advanced-api-services/token-validate/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/advanced-api-services/token-validate/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/apigee-quickstart/httpbin_rev1_2020_02_02.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apigee-quickstart/httpbin_rev1_2020_02_02.zip -------------------------------------------------------------------------------- /sample-proxies/apikey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/README.md -------------------------------------------------------------------------------- /sample-proxies/apikey/apikey.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/apikey.zip -------------------------------------------------------------------------------- /sample-proxies/apikey/apiproxy/ApiKeySample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/apiproxy/ApiKeySample.xml -------------------------------------------------------------------------------- /sample-proxies/apikey/apiproxy/policies/CheckQuota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/apiproxy/policies/CheckQuota.xml -------------------------------------------------------------------------------- /sample-proxies/apikey/apiproxy/policies/StripAPIKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/apiproxy/policies/StripAPIKey.xml -------------------------------------------------------------------------------- /sample-proxies/apikey/apiproxy/policies/ValidateAPIKey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/apiproxy/policies/ValidateAPIKey.xml -------------------------------------------------------------------------------- /sample-proxies/apikey/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/apikey/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/apikey/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/apikey/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/apikey/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/async-callout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/async-callout/README.md -------------------------------------------------------------------------------- /sample-proxies/async-callout/apiproxy/async-callout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/async-callout/apiproxy/async-callout.xml -------------------------------------------------------------------------------- /sample-proxies/async-callout/apiproxy/policies/callout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/async-callout/apiproxy/policies/callout.xml -------------------------------------------------------------------------------- /sample-proxies/async-callout/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/async-callout/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/async-callout/apiproxy/resources/jsc/callout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/async-callout/apiproxy/resources/jsc/callout.js -------------------------------------------------------------------------------- /sample-proxies/async-callout/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/async-callout/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/async-callout/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/async-callout/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/async-callout/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/async-callout/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/base64encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/README.md -------------------------------------------------------------------------------- /sample-proxies/base64encoder/apiproxy/base64encoder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/apiproxy/base64encoder.xml -------------------------------------------------------------------------------- /sample-proxies/base64encoder/apiproxy/policies/EchoVariables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/apiproxy/policies/EchoVariables.xml -------------------------------------------------------------------------------- /sample-proxies/base64encoder/apiproxy/policies/EncodeAuthHeader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/apiproxy/policies/EncodeAuthHeader.xml -------------------------------------------------------------------------------- /sample-proxies/base64encoder/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/base64encoder/apiproxy/resources/jsc/core-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/apiproxy/resources/jsc/core-min.js -------------------------------------------------------------------------------- /sample-proxies/base64encoder/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/base64encoder/base64encoder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/base64encoder.zip -------------------------------------------------------------------------------- /sample-proxies/base64encoder/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/base64encoder/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/base64encoder/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/condition-pattern-matching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/condition-pattern-matching/README.md -------------------------------------------------------------------------------- /sample-proxies/condition-pattern-matching/apiproxy/matchtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/condition-pattern-matching/apiproxy/matchtest.xml -------------------------------------------------------------------------------- /sample-proxies/condition-pattern-matching/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/condition-pattern-matching/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/condition-pattern-matching/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/condition-pattern-matching/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/conditional-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/conditional-policy/README.md -------------------------------------------------------------------------------- /sample-proxies/conditional-policy/apiproxy/conditional-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/conditional-policy/apiproxy/conditional-policy.xml -------------------------------------------------------------------------------- /sample-proxies/conditional-policy/apiproxy/policies/Timer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/conditional-policy/apiproxy/policies/Timer.xml -------------------------------------------------------------------------------- /sample-proxies/conditional-policy/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/conditional-policy/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/conditional-policy/apiproxy/resources/py/timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/conditional-policy/apiproxy/resources/py/timer -------------------------------------------------------------------------------- /sample-proxies/conditional-policy/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/conditional-policy/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/conditional-policy/conditional-policy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/conditional-policy/conditional-policy.zip -------------------------------------------------------------------------------- /sample-proxies/conditional-policy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/conditional-policy/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/conditional-policy/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/conditional-policy/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/dynamic-endpoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/dynamic-endpoint/README.md -------------------------------------------------------------------------------- /sample-proxies/dynamic-endpoint/apiproxy/dynamic-endpoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/dynamic-endpoint/apiproxy/dynamic-endpoint.xml -------------------------------------------------------------------------------- /sample-proxies/dynamic-endpoint/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/dynamic-endpoint/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/dynamic-endpoint/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/dynamic-endpoint/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/dynamic-endpoint/apiproxy/targets/twitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/dynamic-endpoint/apiproxy/targets/twitter.xml -------------------------------------------------------------------------------- /sample-proxies/dynamic-endpoint/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/dynamic-endpoint/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/dynamic-endpoint/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/dynamic-endpoint/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/.gitignore: -------------------------------------------------------------------------------- 1 | */target 2 | .DS_Store 3 | .idea 4 | *.iml 5 | node_modules/ 6 | -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/CONTRIBUTING.md -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/LICENSE -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/README.md -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/deployment-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/deployment-pom.xml -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/docs/images/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/docs/images/arch.png -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/docs/images/introspect_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/docs/images/introspect_trace.png -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/docs/images/mutation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/docs/images/mutation.png -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/docs/images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/docs/images/overview.png -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/docs/images/playground.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/docs/images/playground.gif -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/docs/images/playground_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/docs/images/playground_200.png -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/docs/images/playground_403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/docs/images/playground_403.png -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/docs/images/prods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/docs/images/prods.png -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/docs/images/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/docs/images/query.png -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/graphql-config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/graphql-config/pom.xml -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/graphql-proxy/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | apiproxy/manifests 3 | -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/graphql-proxy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/graphql-proxy/pom.xml -------------------------------------------------------------------------------- /sample-proxies/graphql-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/graphql-sample/pom.xml -------------------------------------------------------------------------------- /sample-proxies/images/oauth-advanced-sequence-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/images/oauth-advanced-sequence-diagram.png -------------------------------------------------------------------------------- /sample-proxies/images/oauth-advanced-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/images/oauth-advanced-success.png -------------------------------------------------------------------------------- /sample-proxies/images/oauth-auth-code-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/images/oauth-auth-code-flow.png -------------------------------------------------------------------------------- /sample-proxies/images/oauth-client-cred-flow-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/images/oauth-client-cred-flow-3.png -------------------------------------------------------------------------------- /sample-proxies/images/oauth-validate-key-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/images/oauth-validate-key-secret.png -------------------------------------------------------------------------------- /sample-proxies/iterate-headers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/iterate-headers/README.md -------------------------------------------------------------------------------- /sample-proxies/iterate-headers/apiproxy/iterate-headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/iterate-headers/apiproxy/iterate-headers.xml -------------------------------------------------------------------------------- /sample-proxies/iterate-headers/apiproxy/policies/PrintHeaders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/iterate-headers/apiproxy/policies/PrintHeaders.xml -------------------------------------------------------------------------------- /sample-proxies/iterate-headers/apiproxy/policies/SetResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/iterate-headers/apiproxy/policies/SetResponse.xml -------------------------------------------------------------------------------- /sample-proxies/iterate-headers/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/iterate-headers/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/iterate-headers/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/iterate-headers/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/iterate-headers/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/iterate-headers/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/iterate-headers/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/iterate-headers/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/jira-release-notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/jira-release-notes/README.md -------------------------------------------------------------------------------- /sample-proxies/jira-release-notes/apiproxy/jirareleasenotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/jira-release-notes/apiproxy/jirareleasenotes.xml -------------------------------------------------------------------------------- /sample-proxies/jira-release-notes/apiproxy/policies/JSON-to-XML.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/jira-release-notes/apiproxy/policies/JSON-to-XML.xml -------------------------------------------------------------------------------- /sample-proxies/jira-release-notes/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/jira-release-notes/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/jira-release-notes/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/jira-release-notes/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/jira-release-notes/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/jira-release-notes/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/jira-release-notes/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/jira-release-notes/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/jira-release-notes/jira_whatsnew_proxy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/jira-release-notes/jira_whatsnew_proxy.zip -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/README.md -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/demo/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/demo/css/demo.css -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/demo/css/jsoneditor-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/demo/css/jsoneditor-min.css -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/demo/index.html -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/demo/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/demo/js/demo.js -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/demo/js/json-patch-duplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/demo/js/json-patch-duplex.js -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/demo/js/jsoneditor-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/demo/js/jsoneditor-min.js -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/json-patch-app-services/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/json-patch-app-services/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/kerberos-credential-mediation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/kerberos-credential-mediation/README.md -------------------------------------------------------------------------------- /sample-proxies/kerberos-credential-mediation/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/kerberos-credential-mediation/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/oauth-advanced/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-advanced/LICENSE -------------------------------------------------------------------------------- /sample-proxies/oauth-advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-advanced/README.md -------------------------------------------------------------------------------- /sample-proxies/oauth-advanced/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-advanced/app/index.js -------------------------------------------------------------------------------- /sample-proxies/oauth-advanced/app/templates/login-app/apiproxy/resources/node/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /sample-proxies/oauth-advanced/app/templates/provisioning/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-advanced/app/templates/provisioning/cleanup.sh -------------------------------------------------------------------------------- /sample-proxies/oauth-advanced/images/apigee-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-advanced/images/apigee-community.png -------------------------------------------------------------------------------- /sample-proxies/oauth-advanced/images/oauth-authcode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-advanced/images/oauth-authcode.gif -------------------------------------------------------------------------------- /sample-proxies/oauth-advanced/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-advanced/package.json -------------------------------------------------------------------------------- /sample-proxies/oauth-client-credentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-client-credentials/README.md -------------------------------------------------------------------------------- /sample-proxies/oauth-client-credentials/apiproxy/OAuthSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-client-credentials/apiproxy/OAuthSample.xml -------------------------------------------------------------------------------- /sample-proxies/oauth-client-credentials/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-client-credentials/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/oauth-client-credentials/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-client-credentials/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/oauth-login-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-login-app/README.md -------------------------------------------------------------------------------- /sample-proxies/oauth-login-app/apiproxy/OAuth20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-login-app/apiproxy/OAuth20.xml -------------------------------------------------------------------------------- /sample-proxies/oauth-login-app/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-login-app/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/oauth-login-app/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-login-app/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/oauth-login-app/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-login-app/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/oauth-login-app/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-login-app/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/oauth-validate-key-secret/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-validate-key-secret/README.md -------------------------------------------------------------------------------- /sample-proxies/oauth-validate-key-secret/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-validate-key-secret/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/oauth-validate-key-secret/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-validate-key-secret/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/oauth-verify-accesstoken/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-verify-accesstoken/README.md -------------------------------------------------------------------------------- /sample-proxies/oauth-verify-accesstoken/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-verify-accesstoken/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/oauth-verify-accesstoken/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth-verify-accesstoken/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/oauth10a-3legged/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth10a-3legged/README.md -------------------------------------------------------------------------------- /sample-proxies/oauth10a-3legged/apiproxy/OAuth10Application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth10a-3legged/apiproxy/OAuth10Application.xml -------------------------------------------------------------------------------- /sample-proxies/oauth10a-3legged/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth10a-3legged/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/oauth10a-3legged/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth10a-3legged/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/oauth10a-3legged/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth10a-3legged/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/oauth10a-3legged/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/oauth10a-3legged/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/README.md -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/apiproxy/outbound-oauth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/apiproxy/outbound-oauth.xml -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/apiproxy/policies/api-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/apiproxy/policies/api-config.xml -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/apiproxy/policies/api-token-get.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/apiproxy/policies/api-token-get.xml -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/apiproxy/policies/cors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/apiproxy/policies/cors.xml -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/apiproxy/policies/translate-query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/apiproxy/policies/translate-query.xml -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/apiproxy/resources/jsc/api-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/apiproxy/resources/jsc/api-config.js -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/demo/demo.css -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/demo/demo.js -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/demo/index.html -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/outbound-oauth/oauth-token-cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/outbound-oauth/oauth-token-cache.xml -------------------------------------------------------------------------------- /sample-proxies/pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/README.md -------------------------------------------------------------------------------- /sample-proxies/pagination/apiproxy/pagination.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/apiproxy/pagination.xml -------------------------------------------------------------------------------- /sample-proxies/pagination/apiproxy/policies/AssignMessage-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/apiproxy/policies/AssignMessage-1.xml -------------------------------------------------------------------------------- /sample-proxies/pagination/apiproxy/policies/ResponseCache-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/apiproxy/policies/ResponseCache-1.xml -------------------------------------------------------------------------------- /sample-proxies/pagination/apiproxy/policies/XSLT-Paginate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/apiproxy/policies/XSLT-Paginate.xml -------------------------------------------------------------------------------- /sample-proxies/pagination/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/pagination/apiproxy/resources/xsl/paginate.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/apiproxy/resources/xsl/paginate.xslt -------------------------------------------------------------------------------- /sample-proxies/pagination/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/pagination/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/pagination/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/pagination/pagination.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/pagination.zip -------------------------------------------------------------------------------- /sample-proxies/pagination/paginationCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/paginationCache.xml -------------------------------------------------------------------------------- /sample-proxies/pagination/restaurant_locator_target.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/pagination/restaurant_locator_target.zip -------------------------------------------------------------------------------- /sample-proxies/regex-protection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/regex-protection/README.md -------------------------------------------------------------------------------- /sample-proxies/regex-protection/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/regex-protection/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/regex-protection/apiproxy/regex-protection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/regex-protection/apiproxy/regex-protection.xml -------------------------------------------------------------------------------- /sample-proxies/regex-protection/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/regex-protection/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/regex-protection/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/regex-protection/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/regex-protection/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/regex-protection/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/regex-protection/regex-protection.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/regex-protection/regex-protection.zip -------------------------------------------------------------------------------- /sample-proxies/response-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/README.md -------------------------------------------------------------------------------- /sample-proxies/response-cache/apiproxy/policies/addheader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/apiproxy/policies/addheader.xml -------------------------------------------------------------------------------- /sample-proxies/response-cache/apiproxy/policies/cacheforecast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/apiproxy/policies/cacheforecast.xml -------------------------------------------------------------------------------- /sample-proxies/response-cache/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/response-cache/apiproxy/response-cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/apiproxy/response-cache.xml -------------------------------------------------------------------------------- /sample-proxies/response-cache/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/response-cache/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/response-cache/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/response-cache/refresh_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/refresh_cache.sh -------------------------------------------------------------------------------- /sample-proxies/response-cache/skip-lookup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/skip-lookup.sh -------------------------------------------------------------------------------- /sample-proxies/response-cache/skip-population.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/response-cache/skip-population.sh -------------------------------------------------------------------------------- /sample-proxies/shared-flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/shared-flow/README.md -------------------------------------------------------------------------------- /sample-proxies/shared-flow/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/shared-flow/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/shared-flow/apiproxy/shared-flow-client-proxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/shared-flow/apiproxy/shared-flow-client-proxy.xml -------------------------------------------------------------------------------- /sample-proxies/shared-flow/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/shared-flow/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/shared-flow/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/shared-flow/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/shared-flow/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/shared-flow/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/simple-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/simple-python/README.md -------------------------------------------------------------------------------- /sample-proxies/simple-python/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/simple-python/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/simple-python/apiproxy/python.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/simple-python/apiproxy/python.xml -------------------------------------------------------------------------------- /sample-proxies/simple-python/apiproxy/resources/py/setHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/simple-python/apiproxy/resources/py/setHeader.py -------------------------------------------------------------------------------- /sample-proxies/simple-python/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/simple-python/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/simple-python/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/simple-python/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/simple-python/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/simple-python/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/soap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/README.md -------------------------------------------------------------------------------- /sample-proxies/soap/apiproxy/SimpleSOAP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/apiproxy/SimpleSOAP.xml -------------------------------------------------------------------------------- /sample-proxies/soap/apiproxy/policies/CalculateNewAddress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/apiproxy/policies/CalculateNewAddress.xml -------------------------------------------------------------------------------- /sample-proxies/soap/apiproxy/policies/ExtractAddress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/apiproxy/policies/ExtractAddress.xml -------------------------------------------------------------------------------- /sample-proxies/soap/apiproxy/policies/SaveHostHeader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/apiproxy/policies/SaveHostHeader.xml -------------------------------------------------------------------------------- /sample-proxies/soap/apiproxy/policies/TransformWSDL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/apiproxy/policies/TransformWSDL.xml -------------------------------------------------------------------------------- /sample-proxies/soap/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/soap/apiproxy/resources/py/calculateaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/apiproxy/resources/py/calculateaddress.py -------------------------------------------------------------------------------- /sample-proxies/soap/apiproxy/resources/xsl/fixwsdl.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/apiproxy/resources/xsl/fixwsdl.xsl -------------------------------------------------------------------------------- /sample-proxies/soap/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/soap/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/soap/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/soap/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/streaming/README.md -------------------------------------------------------------------------------- /sample-proxies/streaming/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/streaming/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/streaming/apiproxy/streaming.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/streaming/apiproxy/streaming.xml -------------------------------------------------------------------------------- /sample-proxies/streaming/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/streaming/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/streaming/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/streaming/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/streaming/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/streaming/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/target-reroute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/target-reroute/README.md -------------------------------------------------------------------------------- /sample-proxies/target-reroute/apiproxy/policies/extractZip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/target-reroute/apiproxy/policies/extractZip.xml -------------------------------------------------------------------------------- /sample-proxies/target-reroute/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/target-reroute/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/target-reroute/apiproxy/target-reroute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/target-reroute/apiproxy/target-reroute.xml -------------------------------------------------------------------------------- /sample-proxies/target-reroute/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/target-reroute/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/target-reroute/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/target-reroute/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/target-reroute/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/target-reroute/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/twitter-mobile-timeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-mobile-timeline/README.md -------------------------------------------------------------------------------- /sample-proxies/twitter-mobile-timeline/apiproxy/policies/CORS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-mobile-timeline/apiproxy/policies/CORS.xml -------------------------------------------------------------------------------- /sample-proxies/twitter-mobile-timeline/demo/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-mobile-timeline/demo/demo.css -------------------------------------------------------------------------------- /sample-proxies/twitter-mobile-timeline/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-mobile-timeline/demo/demo.js -------------------------------------------------------------------------------- /sample-proxies/twitter-mobile-timeline/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-mobile-timeline/demo/index.html -------------------------------------------------------------------------------- /sample-proxies/twitter-mobile-timeline/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-mobile-timeline/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/twitter-mobile-timeline/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-mobile-timeline/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/twitter-oembed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-oembed/README.md -------------------------------------------------------------------------------- /sample-proxies/twitter-oembed/apiproxy/policies/cors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-oembed/apiproxy/policies/cors.xml -------------------------------------------------------------------------------- /sample-proxies/twitter-oembed/apiproxy/policies/search-oembed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-oembed/apiproxy/policies/search-oembed.xml -------------------------------------------------------------------------------- /sample-proxies/twitter-oembed/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-oembed/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/twitter-oembed/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-oembed/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/twitter-oembed/apiproxy/twitter-oembed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-oembed/apiproxy/twitter-oembed.xml -------------------------------------------------------------------------------- /sample-proxies/twitter-oembed/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-oembed/demo/demo.js -------------------------------------------------------------------------------- /sample-proxies/twitter-oembed/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-oembed/demo/index.html -------------------------------------------------------------------------------- /sample-proxies/twitter-oembed/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/twitter-oembed/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/README.md -------------------------------------------------------------------------------- /sample-proxies/variables/apiproxy/policies/parse-xml-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/apiproxy/policies/parse-xml-response.xml -------------------------------------------------------------------------------- /sample-proxies/variables/apiproxy/policies/read-variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/apiproxy/policies/read-variables.xml -------------------------------------------------------------------------------- /sample-proxies/variables/apiproxy/policies/variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/apiproxy/policies/variables.xml -------------------------------------------------------------------------------- /sample-proxies/variables/apiproxy/policies/xmltojson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/apiproxy/policies/xmltojson.xml -------------------------------------------------------------------------------- /sample-proxies/variables/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/variables/apiproxy/resources/jsc/read-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/apiproxy/resources/jsc/read-variables.js -------------------------------------------------------------------------------- /sample-proxies/variables/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/variables/apiproxy/variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/apiproxy/variables.xml -------------------------------------------------------------------------------- /sample-proxies/variables/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/variables/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/invoke.sh -------------------------------------------------------------------------------- /sample-proxies/variables/variables.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/variables/variables.zip -------------------------------------------------------------------------------- /sample-proxies/xmltojson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/xmltojson/README.md -------------------------------------------------------------------------------- /sample-proxies/xmltojson/apiproxy/policies/xmltojson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/xmltojson/apiproxy/policies/xmltojson.xml -------------------------------------------------------------------------------- /sample-proxies/xmltojson/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/xmltojson/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /sample-proxies/xmltojson/apiproxy/targets/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/xmltojson/apiproxy/targets/default.xml -------------------------------------------------------------------------------- /sample-proxies/xmltojson/apiproxy/xmltojson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/xmltojson/apiproxy/xmltojson.xml -------------------------------------------------------------------------------- /sample-proxies/xmltojson/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/xmltojson/deploy.sh -------------------------------------------------------------------------------- /sample-proxies/xmltojson/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/sample-proxies/xmltojson/invoke.sh -------------------------------------------------------------------------------- /samplets/Extract-Variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/samplets/Extract-Variables/README.md -------------------------------------------------------------------------------- /samplets/Extract-Variables/apiproxy/policies/EV-Query-Param.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/samplets/Extract-Variables/apiproxy/policies/EV-Query-Param.xml -------------------------------------------------------------------------------- /samplets/Extract-Variables/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/samplets/Extract-Variables/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /samplets/Extract-Variables/apiproxy/samplet-extract-variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/samplets/Extract-Variables/apiproxy/samplet-extract-variables.xml -------------------------------------------------------------------------------- /samplets/Extract-Variables/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/samplets/Extract-Variables/deploy.sh -------------------------------------------------------------------------------- /samplets/Extract-Variables/docs/Extract-Query-Param.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/samplets/Extract-Variables/docs/Extract-Query-Param.md -------------------------------------------------------------------------------- /samplets/Extract-Variables/docs/Extract-URI-Part.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/samplets/Extract-Variables/docs/Extract-URI-Part.md -------------------------------------------------------------------------------- /samplets/Extract-Variables/invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/samplets/Extract-Variables/invoke.sh -------------------------------------------------------------------------------- /samplets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/samplets/README.md -------------------------------------------------------------------------------- /schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/README.md -------------------------------------------------------------------------------- /schemas/all.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/all.xsd -------------------------------------------------------------------------------- /schemas/all_policies.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/all_policies.xsd -------------------------------------------------------------------------------- /schemas/configuration/configuration_schemas.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/configuration/configuration_schemas.xsd -------------------------------------------------------------------------------- /schemas/policy/access_control.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/access_control.xsd -------------------------------------------------------------------------------- /schemas/policy/access_entity.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/access_entity.xsd -------------------------------------------------------------------------------- /schemas/policy/assign_message.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/assign_message.xsd -------------------------------------------------------------------------------- /schemas/policy/basic_authentication.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/basic_authentication.xsd -------------------------------------------------------------------------------- /schemas/policy/cache.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/cache.xsd -------------------------------------------------------------------------------- /schemas/policy/extract_variables.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/extract_variables.xsd -------------------------------------------------------------------------------- /schemas/policy/flow_callout.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/flow_callout.xsd -------------------------------------------------------------------------------- /schemas/policy/java_callout.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/java_callout.xsd -------------------------------------------------------------------------------- /schemas/policy/java_script.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/java_script.xsd -------------------------------------------------------------------------------- /schemas/policy/json_threat_protection.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/json_threat_protection.xsd -------------------------------------------------------------------------------- /schemas/policy/json_to_xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/json_to_xml.xsd -------------------------------------------------------------------------------- /schemas/policy/jwt.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/jwt.xsd -------------------------------------------------------------------------------- /schemas/policy/keyvaluemap-operations.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/keyvaluemap-operations.xsd -------------------------------------------------------------------------------- /schemas/policy/ldap.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/ldap.xsd -------------------------------------------------------------------------------- /schemas/policy/message_logging.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/message_logging.xsd -------------------------------------------------------------------------------- /schemas/policy/message_validation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/message_validation.xsd -------------------------------------------------------------------------------- /schemas/policy/oas_validation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/oas_validation.xsd -------------------------------------------------------------------------------- /schemas/policy/oauth_v1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/oauth_v1.xsd -------------------------------------------------------------------------------- /schemas/policy/oauth_v2_verify_api_key.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/oauth_v2_verify_api_key.xsd -------------------------------------------------------------------------------- /schemas/policy/quota_spike_ratelimit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/quota_spike_ratelimit.xsd -------------------------------------------------------------------------------- /schemas/policy/raise_fault.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/raise_fault.xsd -------------------------------------------------------------------------------- /schemas/policy/regular_expression_protection.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/regular_expression_protection.xsd -------------------------------------------------------------------------------- /schemas/policy/saml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/saml.xsd -------------------------------------------------------------------------------- /schemas/policy/script.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/script.xsd -------------------------------------------------------------------------------- /schemas/policy/service_callout.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/service_callout.xsd -------------------------------------------------------------------------------- /schemas/policy/statistics_collector.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/statistics_collector.xsd -------------------------------------------------------------------------------- /schemas/policy/xml_threat_protection.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/xml_threat_protection.xsd -------------------------------------------------------------------------------- /schemas/policy/xml_to_json.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/xml_to_json.xsd -------------------------------------------------------------------------------- /schemas/policy/xsl.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/schemas/policy/xsl.xsd -------------------------------------------------------------------------------- /setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/README.md -------------------------------------------------------------------------------- /setup/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/deploy.sh -------------------------------------------------------------------------------- /setup/deploy_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/deploy_all.sh -------------------------------------------------------------------------------- /setup/provisioning/CheapProduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/CheapProduct.json -------------------------------------------------------------------------------- /setup/provisioning/ExpensiveProduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/ExpensiveProduct.json -------------------------------------------------------------------------------- /setup/provisioning/FreeProduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/FreeProduct.json -------------------------------------------------------------------------------- /setup/provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/README.md -------------------------------------------------------------------------------- /setup/provisioning/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/cleanup.sh -------------------------------------------------------------------------------- /setup/provisioning/joe-app-product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/joe-app-product.xml -------------------------------------------------------------------------------- /setup/provisioning/joe-app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/joe-app.xml -------------------------------------------------------------------------------- /setup/provisioning/joe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/joe.xml -------------------------------------------------------------------------------- /setup/provisioning/setProxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/setProxy.sh -------------------------------------------------------------------------------- /setup/provisioning/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/setup.sh -------------------------------------------------------------------------------- /setup/provisioning/thomas-app-product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/thomas-app-product.xml -------------------------------------------------------------------------------- /setup/provisioning/thomas-app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/thomas-app.xml -------------------------------------------------------------------------------- /setup/provisioning/thomas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning/thomas.xml -------------------------------------------------------------------------------- /setup/provisioning_for_oauth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/provisioning_for_oauth.sh -------------------------------------------------------------------------------- /setup/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/setenv.sh -------------------------------------------------------------------------------- /setup/userconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/setup/userconf.sh -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/api-platform-samples.json.postman_collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/api-platform-samples.json.postman_collection -------------------------------------------------------------------------------- /tools/deploy-sharedflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/deploy-sharedflow.py -------------------------------------------------------------------------------- /tools/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/deploy.py -------------------------------------------------------------------------------- /tools/org-snapshot/JSONTokenize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/org-snapshot/JSONTokenize.sh -------------------------------------------------------------------------------- /tools/org-snapshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/org-snapshot/README.md -------------------------------------------------------------------------------- /tools/org-snapshot/apigee-getorg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/org-snapshot/apigee-getorg.sh -------------------------------------------------------------------------------- /tools/org-snapshot/apigee-org-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/org-snapshot/apigee-org-env.sh -------------------------------------------------------------------------------- /tools/org-snapshot/apigee-org-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/org-snapshot/apigee-org-lib.sh -------------------------------------------------------------------------------- /tools/org-snapshot/apigee-orgdef.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/org-snapshot/apigee-orgdef.cfg -------------------------------------------------------------------------------- /tools/proxy_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tools/proxy_gen.sh -------------------------------------------------------------------------------- /tutorial-demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/README.md -------------------------------------------------------------------------------- /tutorial-demos/firestore-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/firestore-demo/README.md -------------------------------------------------------------------------------- /tutorial-demos/firestore-demo/specs/jokes-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/firestore-demo/specs/jokes-api.yaml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/README.md -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/Kaleo-Map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/Kaleo-Map.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/manifests/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/manifests/manifest.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/Get-Maps-Key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/Get-Maps-Key.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/Get-Weather-Key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/Get-Weather-Key.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/Get-lat-lng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/Get-lat-lng.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/Weather-Callout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/Weather-Callout.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/add-cors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/add-cors.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/add-pizza.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/add-pizza.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/add-weather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/add-weather.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/impose-quota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/impose-quota.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/mock-response.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/mock-response.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/set-client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/set-client.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/set-gmaps-key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/set-gmaps-key.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/set-maps-js-url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/set-maps-js-url.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/set-maps-url.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/set-maps-url.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/policies/verify-api-key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/policies/verify-api-key.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/proxies/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/proxies/default.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/resources/jsc/add-pizza.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/resources/jsc/add-pizza.js -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/resources/jsc/add-weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/resources/jsc/add-weather.js -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/resources/jsc/set-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/resources/jsc/set-client.js -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/resources/jsc/set-maps-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/resources/jsc/set-maps-url.js -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/apiproxy/targets/gmaps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/apiproxy/targets/gmaps.xml -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/frontend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/frontend/main.go -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/frontend/public/index.html -------------------------------------------------------------------------------- /tutorial-demos/maps-demo/img/maps-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apigee/api-platform-samples/HEAD/tutorial-demos/maps-demo/img/maps-demo.jpg --------------------------------------------------------------------------------