POST JSON to API using Rails and HTTParty

前端 未结 2 1090
感情败类
感情败类 2020-11-28 20:44

I would like for a user within my ruby on rails app to be able to submit a ticket to my external ticket management system, squishlist.com. They have an api and instructions

2条回答
  •  庸人自扰
    2020-11-28 21:23

    The :query_string_normalizer option is also available, which will override the default normalizer HashConversions.to_params(query)

    query_string_normalizer: ->(query){query.to_json}
    

提交回复
热议问题