Rest API calls with PowerApps

送分小仙女□ 提交于 2019-12-22 05:17:46

问题


I am playing around with Microsoft PowerApps and Microsoft Flow. I am trying to figure out how to make API calls from PowerApps and return the results(Status and Body) to a field such as a text box in my app.

I can make the HTTP requests through Flow and put them in a static file such as an excel spreadsheet...etc. I can also make the calls from a PowerApps control such as a button but all I know how to do with it is return it to something like an excel file, when really I want to return it to a Text Box or Text Area.


回答1:


Today you cannot access the raw HTTP status/body from a PowerApp. The way to call "arbitrary" HTTP endpoints is to use Custom APIs that you can describe using Swagger. I wrote a quick blog on how to call Azure functions that shows how to craft a swagger to call the API: https://powerapps.microsoft.com/en-us/blog/using-azure-functions-in-powerapps/

Might be good if you could clarify the specific scenario you are trying to build to see if there are other ways, but one option that comes to mind is to build a custom API that receives the URL and on the server-side performs the HTTP request and returns the values in an object that then you can easily access in PowerApps.




回答2:


It is relatively straightforward to visualize API (JSON) responses using a PowerApps Gallery Control.

Do this:

  1. Ensure the Flow has the correct JSON response before proceeding
  2. Add ClearCollect(colResponse, myFlow.apiRequest()) Function to a Button Control in the PowerApp
  3. Execute the API call (click the button)
  4. Inspect colResponse (View/Collections) to ensure it has content
  5. Insert a blank Gallery Control
  6. Set its Items Property to colResponse
  7. Insert a TextBox Control into the Gallery
  8. Set its Text Property to ThisItem.<someColumn>

Depending on the shape of your JSON response (flat or nested table), you may have to do some wrangling.

There are 3 areas to focus your wrangling:

  1. On the ClearCollect Function.

    a. Add some dot notation to the end of this to "dig" into the API response before it hits the Gallery Control

    b. Example: ClearCollect(colResponse, myFlow.apiRequest()).someColumn

  2. On the Gallery Control Items Property

    a. Add some dot notation to the end of colResponse to "dig" into the Collection

    b. Example: colResponse.someColumn

  3. On the TextBox Control within the Gallery

    a. Add the First() Function to the Text Property

    b. Example: `First(ThisItem.someColumn).someColumn2'

    c. Note: There are some JSON schemas that require MULTIPLE First()'s to "dig" into the correct level. `First(First(ThisItem.someColumn).someColumn2).someColumn3' etc.

See this video for tips on visualizing API responses in PowerApps Galleries.



来源:https://stackoverflow.com/questions/37196287/rest-api-calls-with-powerapps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!