要用Codeigniter框架寫微信的後台
微信的一些介面需要用到http請求 請問Codeigniter有專門的類別嗎
如
取得access token:
http要求方式: GET
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET
建立二維碼:
http要求方式: POST
URL: https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=TOKEN
#
POST資料格式:json
POST資料範例:{"expire_seconds": 1800, "action_name": "QR_SCENE", "action_info": {"scene": {"scene_id": 123}}}