Write the post_body to OAuth2 PUT requests

This commit is contained in:
Derek Brooks 2013-10-15 00:53:34 +00:00
parent 3fc9c63a06
commit e599d29787
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ exports.OAuth2.prototype._executeRequest= function( http_library, options, post_
callback(e);
});
if( options.method == 'POST' && post_body ) {
if( (options.method == 'POST' || options.method == 'PUT') && post_body ) {
request.write(post_body);
}
request.end();