Browse Source

Merge pull request #57 from haohcraft/master

change http-method GET to POST on api.Screenboard#share
develop
Brett Langdon 7 years ago
committed by GitHub
parent
commit
1fdcb13158
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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