zoukankan      html  css  js  c++  java
  • 如何使用Chrome扩展应用postman发送SAP UI5 batch操作

    There is a standard Gateway client tool ( transaction code /IWFND/GW_CLIENT ) which allows us to launch odata request without browser for testing purpose. And there is another approach which can achieve the same result without using SAPGUI, that is Chrome extension: postman.

    For example, we are doing some test in Fiori application and we observe the following batch operation in Chrome network tab. We would like to do unit or performance testing on it with the help of postman.

    How to create the batch operation in postman

    Just copy the value you find in Chrome network tab from screenshot above to the postman based on the number.

    now the request header part is done. We continue to copy all the text in request payload into clip-board. ( select all, ctrl + C )

    Choose “raw” tab, then Ctrl + V all the payload text into the text area, and then click Send button. Unfortunately we get 403 error, due to the missing CSRF token.

    How to get CSRF token

    Just create another http request in postman, request method sets to GET, and http header x-csrf-token with value Fetch, send the request, and the token is available in response header.

    Once done, paste this token into our previous batch request as http header value:

    And send the batch request once again, this time it works:

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    音频可视化
    accunulate
    node
    js 中编码(encode)和解码(decode)的三种方法
    ES6高阶 同步和异步 回调地狱 promise async和await
    区间dp
    树形dp1
    背包dp(多重)
    树形dp
    背包dp(完全)
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13625752.html
Copyright © 2011-2022 走看看