ステップ0:はじめに(動画あり)

  1. Oktaアプリケーションの接続

  2. 次のREST APIエンドポイントをコピーします。

    [
                {
                    "id": 4,
                    "type": "Dog",
                    "price": 999.99,        
                },
                {
                    "id": 5,
                    "type": Dog",
                    "price": 249.99
                },
                {
                    "id": 6,
                    "type": "Dog",
                    "price": 49.97
                }
            ]
  3. 次のように、REST APIエンドポイントをブラウザーに貼り付けます。

    REST API Endpoint with query parameters:

    http://petstore-demo-endpoint.execute-api.com/petstore/pets?type=Dog&page=2

返されるペイロードには、3つのペット(ID #4、#5、#6)がJSON配列形式で含まれます。各ペットはID、型、価格属性を持っています。

次の手順

ステップ1:接続設定の作成