<< < 35 36 37 38 39 40 41 42 43 44 45 > >>   Sort: Rank

Add API Operation Request Body Examples
How to add request body examples to my Azure API operation to make it more user friendly? If you have created the "First API" API and "Add new user" operation as described in previous tutorials, you can follow this tutorial to add request body examples. 1. Go to the publisher dashboard of the API Ma...
2018-03-28, 4335🔥, 0💬

Test API as a Publisher Administrator
How to Test API as a Publisher Administrator? You can follow this tutorial to test an API operation as a publisher administrator. 1. Go to https://portal.azure.com with a Web browser. And log in with your company email address. 2. Find the API Management Service resource to open it. 3. Click on the ...
2018-03-28, 2454🔥, 0💬

Test API Operation Request Body Examples
How to test request body examples on my Azure API operation? If you have added some request body examples to your Azure API operation, you can follow this tutorial to test them. 1. Go to the developer portal as a publisher administrator. 2. Open the "First API" and open the operation "Add new user"....
2018-03-28, 1671🔥, 0💬

Making API More User Friendly
Where to find tutorials on Making API More User Friendly with Azure API Management Service? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Making API More User Friendly with Azure API Management Service: Add API Operation Request Body Examples...
2018-03-28, 1387🔥, 0💬

Debug API Operation Test
How to debug issues in an API Operation Test? The first step to debug an API operation issue is to review the "trace" information in the test result. 1. Repeat the test on "Add new user" operation of the "First API". 2. Click "Try it" and scroll down. 3. Click "Send". You see test result displayed. ...
2018-03-28, 1385🔥, 0💬

Add Request Query String Parameters
How to add request query string Parameters to my Azure API operation to make it more user friendly? If your API operation uses URL template parameters, the client system must call it with parameter values specified in the correct position, like: https://.../exchange-rate/USD/ EUR/2020-10-10The above...
2018-03-24, 4227🔥, 0💬

Add Request URL Template Parameters
How to add request URL Template Parameters to my Azure API operation to make it more user friendly? If your API Operation requires some key parameters, you put them as template parameters in the URL template of the operation. Using template parameters reduces the need for providing parameters in the...
2018-03-24, 3427🔥, 0💬

Using Azure API Policy
Where to find tutorials on Using API Policy with API Management Services at Azure Portal? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using API Policy with API Management Services at Azure Portal: What Is Azure API Policy Edit API Operation...
2018-03-24, 2080🔥, 0💬

View Policy of an API Operation
How to View Policy of an API Operation? My API operation is not calling the backend service. If your API operation is not calling the backend service, you need to view the policy of the API operation to see why backend service is not called. 1. Go to the publisher dashboard of the API Management Ser...
2018-03-24, 1569🔥, 0💬

Top Level Policy for All Azure APIs
How to view and edit the top level policy for all Azure APIs? Be default, Azure automatically creates a top level policy for all APIs. In the top level policy, the "forward-request" policy statement is added in the "backend" section automatically forward client request to the backend service. But if...
2018-03-24, 1508🔥, 0💬

XML to JSON Conversion at jsonformatter.org
How to use the XML to JSON Conversion Tool at jsonformatter.org? If you want to try the XML to JSON Conversion Tool at jsonformatter.org, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at jsonformatter.org. 2. Enter the following XML document in the XML text area: &...
2018-03-18, 2670🔥, 0💬

XML to JSON Conversion at utilities-online.info
How to use the XML to JSON Conversion Tool at utilities-online.info? If you want to try the XML to JSON Conversion Tool at utilities-online.info, you can follow this tutorial: 1. Go to the XML to JSON Conversion Tool page at utilities-online.info. 2. Enter the following XML document in the XML text ...
2018-03-18, 2545🔥, 0💬

What Is Assignment Statement
What is Assignment Statement in Python? An Assignment Statement is associates a reference of a data object resulted from an expression to a variable or to an item in a list or dictionary. Assignment statement has the following syntax: variable = expression After the data object is assigned to a vari...
2018-03-13, 1424🔥, 0💬

What Is Expression
What Is an expression in Python? An expression in Python is a sequence of operations or method calls applied on data objects. An expression has two impacts when executed: Code statements of invoked methods get executed. This may create new data objects, update existing data objects, consume resource...
2018-03-13, 1390🔥, 0💬

Statement Syntax and Execution Flow Control
Where to find tutorials on Python Statement Syntax and Execution Flow Control? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Python Statement Syntax and Execution Flow Control: Basic Structure of Python Code Multi-line Statements in Python Co...
2018-03-13, 1383🔥, 0💬

Evaluation of Expressions
How expressions are evaluated in Python? Expressions are evaluated in Python based on precedence of each operation list below: Operator Description -------- ----------- (expressions...), [expressions...], {key: value...}, {expressions...} Binding or tuple display, list display, dictionary display, s...
2018-03-13, 1340🔥, 0💬

What Is Variable
What is variable in Python? A variable is symbolic name that can be assigned with a reference link to a data object resulted from an expression. In Python, variables are not declared specifically for any data type. They can be used without declaration statements. For example, the following assignmen...
2018-03-13, 1331🔥, 0💬

Azure API Policy XML Document Structure
What is the XML Document Structure of an Azure API service operation? Azure API Policy XML Document contains 4 policy blocks: "inbound" - Policy sub element to provide policy statements that controls the generation of the inbound HTTP request to be delivered to the backend service. "backend" - Polic...
2018-03-10, 1848🔥, 0💬

Edit API Operation Policy
What are steps to edit policy of an Azure API Operation? For each operation you created in your API, a default policy coded is added. If you want to view and edit policy statements to be executed between the Azure API and the backend service, you can follow this tutorial: 1. Go to the publisher dash...
2018-03-10, 1729🔥, 0💬

'trace' Policy Statement
How to use the "trace" Policy Statement for an Azure API service operation? The "trace" policy statement allows you to generate debugging messages into the API trace output. The "trace" statement can be used in any policy blocks in the policy XML document. The "trace" statement has the following syn...
2018-03-10, 1605🔥, 0💬

What Is Azure API Policy
What Is Azure API Policy? Azure API Policy is a set of plugin rules to be executed between Azure API and the backend service. Those plugin rules are written in Azure API policy statements in XML format. An Azure API policy contains two major blocks: 1. Inbound Policy - Policy statements to be execut...
2018-03-10, 1495🔥, 0💬

Policy Hierarchy and 'base' Statement
What are the relations among API policies defined at product level, API level, and operation level? Azure API Management allows you to define policies at 3 levels: Top Level policy - Policy defined at top level can be shared amount all APIs. You can use the "base" policy statement in the API policy ...
2018-03-10, 1434🔥, 0💬

json_decode() - JSON Object to PHP Associative Array
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JSON Objects match better with PHP Associative Arrays than PHP Objects. You can force json_decode() function to turn return PHP Associative Arrays for any JSON Objects by giving the second argument as "...
2018-03-04, 4933🔥, 0💬

json_last_error_msg() - PHP JSON Error Message
How to detect errors occurred in the json_decode() call? You can use the following two functions to detect error and display error message occurred during the last call of json_decode() or json_encode(). json_last_error() - Returns the error code occurred in the last json_decode() or json_encode() c...
2018-03-04, 3609🔥, 0💬

<< < 35 36 37 38 39 40 41 42 43 44 45 > >>   Sort: Rank