質問

I am making an API for my site using Philip Sturgeon's REST server and i am in a little dilemma. I am not shure which action to use for edit and which for create. POST or PUT?

役に立ちましたか?

解決

The POST method is usually used for create operations,
and the PUT is used for edit/update operations.

他のヒント

Put methods are Idempotent whereas Post methods are non-Idempotent. means put are safely repeatable and post are not safely repeatable

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top