Browse Source

change http-method GET to POST on api.Screenboard#share

pull/57/head
Hao Huang 8 years ago
parent
commit
73ef182cda
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/api/screenboard.js

+ 1
- 1
lib/api/screenboard.js View File

@ -259,7 +259,7 @@ function getAll(callback){
* ```
*/
function share(boardId, callback){
client.request("GET", util.format("/screen/share/%s", boardId), callback);
client.request("POST", util.format("/screen/share/%s", boardId), callback);
}


Loading…
Cancel
Save