Invalid URL Path(無効なURLパス)エラー
Invalid URL Path
エラーは、以下の状況で発生します。
-
URL path needs to start with '/'
REST APIの定義で、URLパスが「/」で開始されていません。
URLパスの構文を確認します。
-
Unexpected or mismatching braces in URL Path
REST APIのURLで、左右の中かっこ(「{」および「}」)が一致していません。
URLパスの構文を確認します。
-
Empty braces in the URL path.Either add a parameter inside the braces, or delete them
REST APIのURLに、パラメータ名が入っていない中かっこ(「{」および「}」)があります。
URLパスの構文を確認します。
-
(<method name>) method needs to have an (<parameter name>) input parameter.Either add an (<parameter name>) input parameter to the method, or remove the parameter from the URL path
RESTメソッドから入力パラメータを削除しましたが、REST APIのURLに残っています。
-
(<parameter name>) input parameter is used in the URL, but is being placed in the Body of the request
入力パラメータのSent Inプロパティが「Body」に設定されていますが、REST APIのメソッドのHTTP Methodが「GET」に設定されているため、「URL」にする必要があります。
-
The URL Path must be either http://host/path or https://host/path
REST APIからのメソッドのURL Pathプロパティに、無効なURLが設定されています。
URLパスの構文を確認します。
エラー行をダブルクリックすると、問題が検出されたREST APIメソッドのプロパティリストに直接移動できます。