top of page
- API -

retval, response = reaper.AZ_Http_Patch(url, reqHeaders, reqBody, queryParams)

- API Detail -

▼入力値

  • url(string) : url

  • reqHeaders(StringMap) : ヘッダー(任意 デフォルト : 空)

  • reqBody(string) : 本文(任意 デフォルト : 空文字列)

  • queryParams(StringMap) : クエリパラメーター(任意 デフォルト : 空)

▼出力値

  • retval(boolean) : 結果

  • response(HttpResponse) : レスポンス

- SIMPLE SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_SILVER")


url = "https://......."  -- 通信先URL


headers = {

    header1 = "val1",

    hed2 = "2"

}


body = "test/testbody"


queryParams = {

    param1 = "1",

    param2 = "a"

}


retval, response = reaper.AZ_Http_Patch(url, headers, body, queryParams)


Msg(retval)

ShowObject(response)


Msg(reaper.AZ_GetErrorCode())


Http

AZ_Http_Patch

対応バージョン:

1.2.0

以降

http-Patch通信

bottom of page