Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extra modification for Previous ECMA Version #323

Open
wants to merge 104 commits into
base: master
Choose a base branch
from
Open

Extra modification for Previous ECMA Version #323

wants to merge 104 commits into from

Commits on Feb 8, 2016

  1. updated package.json

    Rudolf Olah committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    0ed2589 View commit details
    Browse the repository at this point in the history
  2. Update and rename LICENSE to LICENSE.mit

    Rudolf Olah committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    4a834fd View commit details
    Browse the repository at this point in the history
  3. Create LICENSE

    Rudolf Olah committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    9aefed6 View commit details
    Browse the repository at this point in the history
  4. license information using gpl v3 + mit

    see this StackOverflow answer for more info: http://programmers.stackexchange.com/a/178252/7433
    Rudolf Olah committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    3894b87 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2016

  1. better example in readme

    Rudolf Olah committed Feb 9, 2016
    Configuration menu
    Copy the full SHA
    e918cc7 View commit details
    Browse the repository at this point in the history
  2. renamed package from oauth to oauth-libre

    Rudolf Olah committed Feb 9, 2016
    Configuration menu
    Copy the full SHA
    0331b58 View commit details
    Browse the repository at this point in the history
  3. renamed from oauth to oauth-libre

    Rudolf Olah committed Feb 9, 2016
    Configuration menu
    Copy the full SHA
    86dbae5 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2016

  1. OAuth2 Promises Support

    Added bluebird as a dependency
    
    Using Bluebird's promisifyAll and an object that delegates methods to
    the OAuth2 implementation to be able to support promises.
    
    Copied tests from oauth2 to oauth2promises. Existing tests are passing
    with some small corrections.
    Rudolf Olah committed Mar 20, 2016
    Configuration menu
    Copy the full SHA
    202ec07 View commit details
    Browse the repository at this point in the history
  2. package.json formatting and bumped version

    Version is now 0.9.15, added links to both GPL and MIT licenses.
    Rudolf Olah committed Mar 20, 2016
    Configuration menu
    Copy the full SHA
    795cc48 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' into promises

    Rudolf Olah committed Mar 20, 2016
    Configuration menu
    Copy the full SHA
    77a421c View commit details
    Browse the repository at this point in the history
  4. whitespace cleanup

    Rudolf Olah committed Mar 20, 2016
    Configuration menu
    Copy the full SHA
    a2d5c8e View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2016

  1. license info re: patches

    Rudolf Olah committed Mar 25, 2016
    Configuration menu
    Copy the full SHA
    dc0d844 View commit details
    Browse the repository at this point in the history
  2. work in progress, OAuth 1 promises support

    Rudolf Olah committed Mar 25, 2016
    Configuration menu
    Copy the full SHA
    bff7e8b View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2016

  1. Code style cleanup #8

    Rudolf Olah committed Mar 28, 2016
    Configuration menu
    Copy the full SHA
    b9d4105 View commit details
    Browse the repository at this point in the history
  2. OAuth1 fixing more broken tests #4

    and some code style cleanup #8
    Rudolf Olah committed Mar 28, 2016
    Configuration menu
    Copy the full SHA
    6a599c6 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2016

  1. Working OAuth 1.0 example + promisifyAll given multiargs:true

    olegzd authored and Rudolf Olah committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    6f09700 View commit details
    Browse the repository at this point in the history
  2. multiArgs for oauth2-promises

    "Setting multiArgs to true means the resulting promise will always fulfill with an array of the callback's success value(s). This is needed because promises only support a single success value while some callback API's have multiple success value. The default is to ignore all but the first success value of a callback function."
    
    explanation is here: http://bluebirdjs.com/docs/api/promise.promisifyall.html#option-multiargs
    
    fixes #10
    Rudolf Olah committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    d59643f View commit details
    Browse the repository at this point in the history
  3. another example of twitter oauth promises

    related to #4
    Rudolf Olah committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    f938c91 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2016

  1. Fixed broken OAuth Promises test

    Needed to use the _oa raw client instead of the oa client which is the
    promisfied wrapper.
    
    The test is "and followRedirect is false it should not perform the
    secure request with the new location".
    
    related to #4
    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    32c1875 View commit details
    Browse the repository at this point in the history
  2. cleanup of a test #8

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    7549aed View commit details
    Browse the repository at this point in the history
  3. Moved bluebird to optionalDependencies

    instead of being a required dependency, related to #4
    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    6944fd1 View commit details
    Browse the repository at this point in the history
  4. signUrl is delegated instead of promisified

    The function returns a string value immediately and is not asynchronous,
    this fixes three broken unit tests in oauthpromise-tests.js.
    
    related to #4
    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    68ad4a2 View commit details
    Browse the repository at this point in the history
  5. Fixed more broken tests, #4

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    ac96d9f View commit details
    Browse the repository at this point in the history
  6. All tests for OAuth Promise are passing, #4

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    20d89a9 View commit details
    Browse the repository at this point in the history
  7. OAuth2 Promise get method returns data, #4

    When using the promise, it would pass the response and an
    IncomingMessage object. We only need to pass the data object from the
    response.
    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    38de869 View commit details
    Browse the repository at this point in the history
  8. github oauth2 example using promises, #4

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    67dc881 View commit details
    Browse the repository at this point in the history
  9. example of using oauth2 promises in readme #4

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    3441d3f View commit details
    Browse the repository at this point in the history
  10. Promises Support

    * OAuth Promises
    * OAuth2 Promises
    * Examples that use promises
    * Existing tests for OAuth and OAuth2 ported to ensure backwards compatibility with Promise wrapper objects
    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    dcf3c86 View commit details
    Browse the repository at this point in the history
  11. Added copyright and license notices

    closes #3
    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    df76c24 View commit details
    Browse the repository at this point in the history
  12. alphabetical order of contributors

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    01fa956 View commit details
    Browse the repository at this point in the history
  13. added Rudolf and Oleg as contributors

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    693426b View commit details
    Browse the repository at this point in the history
  14. added PATCH to conditions for adding a post_body to requests

    related to #11
    anuccio1 authored and Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    c10a14c View commit details
    Browse the repository at this point in the history
  15. OAuth1 PATCH support, #11

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    c30298e View commit details
    Browse the repository at this point in the history
  16. added contributor, #11

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    0866d95 View commit details
    Browse the repository at this point in the history
  17. removed old instructions for running examples, #2

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    086e4c5 View commit details
    Browse the repository at this point in the history
  18. instructions for running web-based github example

    related to #2
    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    a0a396c View commit details
    Browse the repository at this point in the history
  19. optional dependencies for google auth example

    Dependencies:
    * body-parser
    * express
    * express-session
    * morgan
    
    related to #2
    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    4102234 View commit details
    Browse the repository at this point in the history
  20. in progress google auth fixup, #2

    Rudolf Olah committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    7ffc57d View commit details
    Browse the repository at this point in the history

Commits on May 27, 2016

  1. updated package.json and readme for 0.9.15-alpha

    this is for publishing to NPM
    
    ---
    
    In the future I would prefer to not rely on the centralized repo of NPM
    and provide a git url to download the package
    Rudolf Olah committed May 27, 2016
    Configuration menu
    Copy the full SHA
    294b050 View commit details
    Browse the repository at this point in the history
  2. revert, the tag name is latest not 0.9.15-alpha

    fuck NPM
    Rudolf Olah committed May 27, 2016
    Configuration menu
    Copy the full SHA
    bf657e8 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2016

  1. removed Google OAuth server example #2

    Rudolf Olah committed Jun 29, 2016
    Configuration menu
    Copy the full SHA
    244d759 View commit details
    Browse the repository at this point in the history
  2. twitter server example updated, #2

    Rudolf Olah committed Jun 29, 2016
    Configuration menu
    Copy the full SHA
    74bfb55 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' into readme-example-update

    Rudolf Olah committed Jun 29, 2016
    Configuration menu
    Copy the full SHA
    c64b95c View commit details
    Browse the repository at this point in the history
  4. Merge pull request #16 from omouse/readme-example-update

    * Google server example removed
    * Twitter server example updated
    * Github server example tested and works
    * Instructions added for twitter server example
    Rudolf Olah authored Jun 29, 2016
    Configuration menu
    Copy the full SHA
    0ac7126 View commit details
    Browse the repository at this point in the history
  5. 0.9.15 beta release

    Readme.md: Updated change history with 0.9.15 details
    
    package.json: updated version to 0.9.15-beta
    Rudolf Olah committed Jun 29, 2016
    Configuration menu
    Copy the full SHA
    8161fd5 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2016

  1. Update Readme.md

    Rudolf Olah authored Aug 14, 2016
    Configuration menu
    Copy the full SHA
    65382cc View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2016

  1. added function to set http options

    Georges W. Haddad committed Nov 9, 2016
    Configuration menu
    Copy the full SHA
    f1ad068 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2016

  1. Add a library that use node-oauth-libre

    Carlos Castillo Oporta authored Nov 29, 2016
    Configuration menu
    Copy the full SHA
    5ac22f5 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2016

  1. Spelling error fixed

    Carlos Castillo Oporta authored Dec 2, 2016
    Configuration menu
    Copy the full SHA
    3bc4760 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2016

  1. Merge pull request #19 from caco0516/patch-1

    Add a library that use node-oauth-libre
    Rudolf Olah authored Dec 3, 2016
    Configuration menu
    Copy the full SHA
    df4b09c View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2016

  1. Configuration menu
    Copy the full SHA
    bfc837a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1747e2b View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2016

  1. Merge branch 'ssl-options' of https://github.com/george-haddad/node-o…

    …auth-libre into george-haddad-ssl-options
    Rudolf Olah committed Dec 26, 2016
    Configuration menu
    Copy the full SHA
    31968ab View commit details
    Browse the repository at this point in the history
  2. comment and code formatting

    Rudolf Olah committed Dec 26, 2016
    Configuration menu
    Copy the full SHA
    99aa79e View commit details
    Browse the repository at this point in the history
  3. Merge branch 'george-haddad-ssl-options'

    Rudolf Olah committed Dec 26, 2016
    Configuration menu
    Copy the full SHA
    ea02096 View commit details
    Browse the repository at this point in the history
  4. added george-haddad as contributor

    Rudolf Olah committed Dec 26, 2016
    Configuration menu
    Copy the full SHA
    b264657 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #21 from caco0516/master

    Just added Authorization header for POST token by OAuth 2.0 specification
    Rudolf Olah authored Dec 26, 2016
    Configuration menu
    Copy the full SHA
    237221b View commit details
    Browse the repository at this point in the history
  6. updated change history

    Rudolf Olah committed Dec 26, 2016
    Configuration menu
    Copy the full SHA
    5c43ba8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    983b7fc View commit details
    Browse the repository at this point in the history
  8. TravisCI support

    Rudolf Olah committed Dec 26, 2016
    Configuration menu
    Copy the full SHA
    249a194 View commit details
    Browse the repository at this point in the history
  9. travici build badge and gpl3 license badge

    Rudolf Olah committed Dec 26, 2016
    Configuration menu
    Copy the full SHA
    e1ce516 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c0bce92 View commit details
    Browse the repository at this point in the history
  11. workaround for oauth2 basic authorization to handle older and newer v…

    …ersions of node
    Rudolf Olah committed Dec 26, 2016
    Configuration menu
    Copy the full SHA
    0210c0a View commit details
    Browse the repository at this point in the history
  12. only using buffer constructor

    Rudolf Olah committed Dec 26, 2016
    Configuration menu
    Copy the full SHA
    cbb0723 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2016

  1. Configuration menu
    Copy the full SHA
    c85ce31 View commit details
    Browse the repository at this point in the history
  2. fixed tests, and use of buffer base64

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    1b6fbd1 View commit details
    Browse the repository at this point in the history
  3. fixing styling based on codacy, #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    bceb68c View commit details
    Browse the repository at this point in the history
  4. supporting latest node in tests for now

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    9152ac5 View commit details
    Browse the repository at this point in the history
  5. code cleanup, #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    668dad6 View commit details
    Browse the repository at this point in the history
  6. code cleanup #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    9ab9208 View commit details
    Browse the repository at this point in the history
  7. code cleanup #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    bb7e53f View commit details
    Browse the repository at this point in the history
  8. code cleanup #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    3fee7e6 View commit details
    Browse the repository at this point in the history
  9. code cleanup #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    a4a16b5 View commit details
    Browse the repository at this point in the history
  10. camel case cleanup #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    31f5331 View commit details
    Browse the repository at this point in the history
  11. more code cleanup #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    57106a0 View commit details
    Browse the repository at this point in the history
  12. more more more code cleanup #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    7828afd View commit details
    Browse the repository at this point in the history
  13. coding style fixes #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    e8ac8ce View commit details
    Browse the repository at this point in the history
  14. more cleanup of code #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    1906355 View commit details
    Browse the repository at this point in the history
  15. yep, more code cleanup #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    766554f View commit details
    Browse the repository at this point in the history
  16. mhm more cleanup #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    668eb08 View commit details
    Browse the repository at this point in the history
  17. refactoring duplicate code #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    28de1ca View commit details
    Browse the repository at this point in the history
  18. added jsdocs, #8

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    1bc766b View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c7d9db7 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    cdc6a59 View commit details
    Browse the repository at this point in the history
  21. jsdoc comments, npm run build-docs to generate docs

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    02de5b9 View commit details
    Browse the repository at this point in the history
  22. added unit test

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    6d00919 View commit details
    Browse the repository at this point in the history
  23. Merge pull request #24 from omouse/cr24osome-master

    move extraParams to getOAuthAccessToken parameters
    Rudolf Olah authored Dec 27, 2016
    Configuration menu
    Copy the full SHA
    da80a85 View commit details
    Browse the repository at this point in the history
  24. updated contributors and change history, #23

    Rudolf Olah committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    c4c91ed View commit details
    Browse the repository at this point in the history
  25. Adds backward compatibility for test

    We have to use both constructor because old constructor is deprecated
    but we still need it. And new node js versions don’t allow using old
    constructor.
    caco0516 committed Dec 27, 2016
    Configuration menu
    Copy the full SHA
    5e4012f View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2016

  1. Configuration menu
    Copy the full SHA
    0430d51 View commit details
    Browse the repository at this point in the history
  2. Revert "supporting latest node in tests for now"

    This reverts commit 9152ac5.
    Rudolf Olah committed Dec 28, 2016
    Configuration menu
    Copy the full SHA
    c2f2e48 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #22 from omouse/backwards-compatible-buffer-constr…

    …uctor
    
    Backwards compatible buffer constructor to support older versions of Node (for Amazon Lambda)
    Rudolf Olah authored Dec 28, 2016
    Configuration menu
    Copy the full SHA
    9d7eaf7 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2017

  1. Readme: updated notes

    Rudolf Olah committed Jan 21, 2017
    Configuration menu
    Copy the full SHA
    0ec24db View commit details
    Browse the repository at this point in the history
  2. Readme: added caco0516 to list of contributors

    Rudolf Olah committed Jan 21, 2017
    Configuration menu
    Copy the full SHA
    c979706 View commit details
    Browse the repository at this point in the history
  3. bumped version from 0.9.15-beta to 0.9.15, #25

    Rudolf Olah committed Jan 21, 2017
    Configuration menu
    Copy the full SHA
    4f3b053 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2017

  1. hooks for oauth2 with event emitter api

    * Adds EventEmitter api to request for OAuth2 client
    
    This add to events first one if for before _request method executes and
    second one is after _request method executes. This commit also include
    test cases.
    
    * Adds OAuth2 example with hooks
    
    * Updates Readme
    
    * Replace ES6 style for backward compatibility
    
    * version bump to 0.9.16
    
    * style changes to appease Codacy
    Carlos Castillo Oporta authored and Rudolf Olah committed Jan 25, 2017
    Configuration menu
    Copy the full SHA
    9782763 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2017

  1. Allow content-type header to be set when making requests (#30)

    * Allow passing Content-Type header to OAuth constructor to set _defaultContentType
    
    * Added _defaultContentType instance variable to OAuth
    
    * Added setDefaultContentType method to set Content-Type header to something other than application/x-www-form-urlencoded when creating a request with post/get/etc
    
    * README.md: Add setting content type to 'application/json' to the example for OAuth1 and change requires to reference 'oauth-libre' instead of 'oauth'
    rausanka authored and Rudolf Olah committed Jul 29, 2017
    Configuration menu
    Copy the full SHA
    117202f View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2017

  1. 0.9.17

    Rudolf Olah committed Aug 2, 2017
    Configuration menu
    Copy the full SHA
    5644182 View commit details
    Browse the repository at this point in the history
  2. Readme.md: updated releases list to add 0.9.17 and updated contributo…

    …rs list to add @rausanka
    Rudolf Olah committed Aug 2, 2017
    Configuration menu
    Copy the full SHA
    fb18d9f View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2017

  1. Create CODE_OF_CONDUCT.md

    Rudolf Olah authored Aug 23, 2017
    Configuration menu
    Copy the full SHA
    c9ac4ed View commit details
    Browse the repository at this point in the history
  2. Create CONTRIBUTING.md

    Rudolf Olah authored Aug 23, 2017
    Configuration menu
    Copy the full SHA
    4e08e57 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2017

  1. readme: added section on how to help the project

    Rudolf Olah authored Sep 18, 2017
    Configuration menu
    Copy the full SHA
    55145e4 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2018

  1. oauth-promise: delegating setDefaultContentType (#32)

    Rudolf Olah authored Feb 28, 2018
    Configuration menu
    Copy the full SHA
    746a343 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2018

  1. Update Readme.md

    rudolfolah authored Dec 6, 2018
    Configuration menu
    Copy the full SHA
    6e2c3a5 View commit details
    Browse the repository at this point in the history