Skip to content

alibresco/tigerbook-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 

Repository files navigation

tigerbook API doc

  • GET /api/v1/getkey/{agent}
    • CAS protected -- should be accessed in a browser
    • Agent is an optional argument to be used if you would like to get the key for a specific agent (explanation below). This is typically not necessary unless you have the specific use case defined in the section titled "Application Agents".
    • Returns a 32-character key that can be used to access the rest of the API
    • Ex: api/v1/getkey --> '586c55266c456c676d54366c3137322d'
  • GET /api/v1/undergraduates
    • WSSE protected
    • Returns a JSON list of dictionaries, with each dictionary representing a student.
    • Dictionary fields: [first_name, last_name, full_name, class_year, net_id, res_college, hometown, home_lat, home_lng, dorm_number, dorm_building, dorm_lat, dorm_lng, major_type, major_raw, major_code, photo_link, phone_raw, mailbox, organization_raw, athletics_raw, athletics_url_raw, gender*, puid*, alias, email]
    • * Must have privileged api access
  • GET /api/v1/undergraduates/{netid}
    • WSSE protected
    • Returns a JSON dictionary representing the queried student
    • Dictionary fields: [first_name, last_name, full_name, class_year, net_id, res_college, hometown, home_lat, home_lng, dorm_number, dorm_building, dorm_lat, dorm_lng, major_type, major_raw, major_code, photo_link, phone_raw, mailbox, organization_raw, athletics_raw, athletics_url_raw, gender*, puid*, alias, email]
    • * Must have privileged api access
  • GET /api/v1/roommates (DEPRECATED)
    • WSSE protected
    • GET arguments: [dorm_building, dorm_number]
    • Returns a list of all netids living in that room
  • GET /api/v1/roommates/{netid} (DEPRECATED)
    • WSSE protected
    • Returns a list of all netids of roommates of {netid}

Application Agents

When you create an outward-facing application where the user needs to access this API on the client side, they should be using their own API credentials instead of yours so that your key is not leaked to the public. This is potentially problematic, however, as if someone uses two different client-side applications that use this API, the second app would overwrite the first's key. As a result, we have user agents available to use to earmark an API key for a specific application so that it persists until the app creator refreshes it. Each app should create one agent name that it uses for all users, an alphanumeric key both unique to that specific app and visually identifiable as belonging to that app. Then, request all the client side API keys using that agent. When you go to make an actual API request, you should send, in the Username field, username+agent instead of sending just username.

For example, imagine that you are working on an app entitled "testapp1". Given this uniqueness, you could name your agent as such. Therefore, all client-side requests for API keys should be make in the form /api/v1/getkey/testapp1. Then, if you were to make an API request from the user "jdoe", you should send the Username field as "jdoe+testapp1".

For the majority of possible uses of this API, agents are unnecessary. For the case in which it is necessary, however, proper use is critically important. If you have any questions, please ask.

WSSE Explanation and Guide

Each request to an API endpoint must include an HTTP header X-WSSE which contains all authentication information for the request. The header includes four important components:

  • Date and time in W3DTF UTC format
  • Username of the API account to authenticate with
  • Nonce (random base64 string, recommended 32 characters in length)
  • Password digest

To create the password digest value, the user must combine the raw nonce value, the date, and the shared secret (in that order). The combined value should be SHA256 hashed, and then base64 encoded.

Before including the nonce in the header, it should also be base64 encoded. Here's a sample X-WSSE header value for the API account "jdoe" with shared secret "secret":

UsernameToken Username="jdoe",PasswordDigest="b7dc8461b7a2fb5272028454d9745457", Nonce="WJ/uazuj9QSO9uTvqhbGyO4NvXriwbD3", Created="2016-07-15T14:50:17Z";

Example WSSE code in Python

import hashlib
import random
from base64 import b64encode
from datetime import datetime

url = 'https://tigerbook.herokuapp.com/api/v1/undergraduates'
created = datetime.utcnow().strftime('%Y-%m-%dT%H:%M:%SZ')
nonce = ''.join([random.choice('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+/=') for i in range(32)])
username = 'jdoe'
password = 'b7dc8461b7a2fb5272028454d9745457'    # use your own from /getkey
generated_digest = b64encode(hashlib.sha256(nonce + created + password).digest())
headers = {
    'Authorization': 'WSSE profile="UsernameToken"',
    'X-WSSE': 'UsernameToken Username="%s", PasswordDigest="%s", Nonce="%s", Created="%s"' % (username, generated_digest, b64encode(nonce), created)
}

Email [email protected] with any questions or concerns

About

API info for tigerbook

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published