POSTプロトコルを使用する場合、OAuth署名はURLのみに関連するのか、それとも投稿データ内の何かに関連するのでしょうか。
質問する
624 次
1 に答える
1
実際のパラメータは、仕様の署名ベース文字列として定義されています: https ://www.rfc-editor.org/rfc/rfc5849#section-3.4.1
POST本文は、セクション3.4.1.3.1の基準が満たされた場合にのみ含まれます。
* The entity-body is single-part.
* The entity-body follows the encoding requirements of the
"application/x-www-form-urlencoded" content-type as defined by
[W3C.REC-html40-19980424].
* The HTTP request entity-header includes the "Content-Type"
header field set to "application/x-www-form-urlencoded".
つまり、XMLまたはJSONデータを投稿する場合、パラメーターは含まれません。ただし、基本的な形式でエンコードされたデータの場合はそうかもしれません。
于 2012-05-27T23:34:39.730 に答える