This application makes it possible to view group membership information, both the groups you are a member of and the members of a group (if available).
This application depends on the following components:
- jQuery
- JSrender (JavaScript Template Rendering for jQuery)
- JSO (JavaScript OAuth 2 client)
- Bootstrap CSS
It can easily be installed by running the following script:
$ sh docs/install_dependencies.sh
This will download the latest version of those components and everything will immediately work.
You need to configure the application to point to your OAuth server. This can
be done by copying config/config.js.default
to config/config.js
and
modifying the config.js
file to suit your situation.
This is the default configuration:
var apiClientId = 'html-voot-client';
var authorizeEndpoint = 'http://localhost/php-oauth/authorize.php';
var apiEndpoint = 'http://localhost/php-voot-proxy/voot.php';
For example, for your situation it may need to be this:
var apiClientId = 'html-voot-client';
var authorizeEndpoint = 'https://www.example.org/php-oauth/authorize.php';
var apiEndpoint = 'https://www.example.org/php-voot-proxy/voot.php';
Also, make sure that this client is registered in your OAuth server. The following information will be relevant:
Identifier | html-voot-client |
---|---|
Name | View Your Group Membership |
Description | Application to view your group membership and other members of your groups. |
Profile | User-agent-based Application |
Secret | NONE |
Redirect URI | https://www.example.org/html-voot-client/index.html |
That should be all!