Azure - Setting up the Continuous Integration & Deployment - Azure DevOps - VSTS Navigate to visualstudio.com and click on the following button: Hit Continue You should get a following confirmation email You will be redirected to the dashboard page https://dev.azure.com/extpiki/?acquisitionId=ca13fd28-53bb-4c63-b5d7-34e09d26e88b&product=suite Create a new project “pandora-items” New window opens: https://dev.azure.com/extpiki/pandora-items
Posts
Showing posts from October, 2018
- Get link
- X
- Other Apps
Azure Logic Apps - Consuming RESTService - Stock Quotes Navigate to https://www.alphavantage.co/ Get your API Key Test the connection https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=GE&interval=1min&apikey= YOURKEY Create a new LogicApp Add Recurrence as the first shape and configure it to trigger the application every 1 Minute Click on the New step -> Add an action Then search for Variables Initialize a new variable of type string named “LastRefreshed” to store the last refreshed value that provided in the “Meta Data” section of the HTTP response for fetching required data from “Time Series (1min)” section *. Initialize another variable (repeat steps 6 and 7) of type float named “value” to store the “Open” value of the given Stock Option Add a new action of type HTTP (HTTP - HTTP) Specify the GET method in the first filed In the lower left corner switch from...