Giter Site home page Giter Site logo

ns8482e / ringcentral-demos-oauth Goto Github PK

View Code? Open in Web Editor NEW

This project forked from grokify/ringcentral-demos-oauth

0.0 0.0 0.0 648 KB

Quick demos on how to use 3-legged OAuth with RingCentral REST API.

Home Page: https://developers.ringcentral.com

License: MIT License

C# 28.98% HTML 32.89% JavaScript 7.35% Shell 0.23% PHP 14.76% Python 7.26% Smarty 6.21% Ruby 2.32%

ringcentral-demos-oauth's Introduction

RingCentral OAuth Demos

This project provides 3-legged OAuth demos using the OAuth 2.0 Authorization Code flow for the RingCentral REST API in various languages using official and community SDKs as described in the API Developer Guide.

The authorization code flow is useful for developers because developers have to do less work and the user is presented with a familiar user experience. It accomplishes these goals by redirecting to RingCentral to mange the authentication, authorization, reset password and single sign-on (SSO) flows using a consistent user experience.

The demos use the popup approach for 3-legged OAuth.

Demos are provided for:

Description

From a development perspective, the application needs to make 2 HTTP requests:

  1. Request for Authorization Code: The application should open a window that is directed to the RingCentral authorization URL that will present the authentication and authorization flows. Upon completion, the window will redirect to the apps redirect URL (provided in the authorization URL or default if only 1 redirect URL is configured). An optional state parameter can be provided for additional security.
  2. Request for Access Token: When the window is redirected back successfully, it will include the following query string parameters: code for the authorization code and state for the state. Assuming the state matches, exchange the authorization code for an access_token with optional refresh_token.

The examples here show both of the two above steps and integrate with existing SDKs where available.

For a step-by-step guide, see the RingCentral API Developer Guide section on Authorization Code Flow.

Server-Side Web Apps

In server-side web app such as PHP, Rails, Django, etc. where the operations occur are slightly different. In these cases, the callback URL should process the callback to retrieve the authorization code and exchange it for an access token.

Page Description
Login page This is any page with a Login button. This page will open the popup and listen for the redirect, after which it will shut down the popup window. There's no need to do any client-side processing except to shutdown the popup and refresh the page.
Callback page The callback query string will be processed server-side. Nothing is needed client-side.

Client-Side Web Apps

Client-side web apps using JavaScript have a feature in that the callback URL does not need to contain any processing either on the client-side or the server-side. The entire flow can be managed by the parent JavaScript page that is initiating the login.

Page Description
Login page This is any page with a Login button. This page will open the popup and listen for the redirect. For client-side processing, this page will also retrieve the query string parameters from the callback page.
Callback page The minimum requirement is for the page to not be redirected to a URL without the redirect_uri since the parent window will poll for the redirect.

Screenshots

The following are example screenshots of the authentication and authorization pages shown.

Authentication

Authorization

Links

Contributing

  1. Fork it (http://github.com/grokify/ringcentral-demos-oauth/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

ringcentral-demos-oauth's People

Contributors

anilkumarbp avatar creatovisguru avatar grokify avatar tylerlong avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.