OutSystems Forge 日本語データベース

REST Extender

※Forge全件データの日本語検索サービスをご利用になりたい場合は、こちらまでお問合せください。

Forge英文サイト

2018-02-09 1.0.0 Hanno All .NET Components, Libraries, Developer Tools
このライブラリを使用すると、REST APIのレスポンスとリクエストの値を読み取り、操作できます。 消費されたREST APIのOnBeforeRequestAdvancedおよびOnAfterResponseAdvancedコールバックメソッドで使用するように設計されています。 OnAfterResponseAdvanced GetAllCookies現在のレスポンスに含まれるすべてのクッキーのリストを返します。GetCookieByName現在のレスポンスから名前で識別される特定のクッキーを返します。OnBeforeRequestAdvanced SetCookiesクッキーのリストを渡して、 API SetContentType OutSystemsによって設定されるデフォルトのコンテンツタイプはapplication / jsonです。 charset = UTF-8この関数を使用すると、コンテンツタイプを明示的に設定することができます。例)application / json
OnBeforeRequestAdvancedおよびOnAfterResponseAdvancedでconsumed REST APIを使用します。 以下の機能が利用できます。 OnAfterResponseAdvancedGetAllCookies現在のレスポンスに含まれるすべてのCookieのリストを返します GetCookieByName現在のレスポンスから名前で識別される特定のクッキーを返します consumed REST APIにリクエストを送信する前に設定するCookieのリスト内のOnBeforeRequestAdvancedSetCookiesPass OutSystemsによって設定されたSetContentTypeDefaultコンテンツタイプは "application / json; charset = UTF-8"です。 この関数を使用すると、コンテンツタイプを明示的に設定することができます。 例) "application / json"

[Overview]
This library allows you to read and manipulate the values in the Response and Request of a REST API. Designed to be used in the OnBeforeRequestAdvanced and OnAfterResponseAdvanced callback methods of a consumed REST API. Following functions are available: OnAfterResponseAdvanced GetAllCookies Returns a list of all the cookies in the current response GetCookieByName Return a specific cookie, identified by a name, from the current response OnBeforeRequestAdvanced SetCookies Pass in a list of cookies to set before sending the request to the consumed API SetContentType Default content type set by OutSystems is application/json; charset=UTF-8 This function allows you to explicitly set the content type, i.e. application/json
[Detail]
Use in OnBeforeRequestAdvanced and OnAfterResponseAdvanced of a consumed REST API. Following functions are available: OnAfterResponseAdvancedGetAllCookiesReturns a list of all the cookies in the current response GetCookieByNameReturn a specific cookie, identified by a name, from the current response OnBeforeRequestAdvancedSetCookiesPass in a list of cookies to set before sending the request to the consumed API SetContentTypeDefault content type set by OutSystems is "application/json; charset=UTF-8" This function allows you to explicitly set the content type, i.e. "application/json"
戻る