Search results

Get authorization keys

Last updated: Dec 28, 2021

Download PDF

Almost every API has a method in place to authenticate requests. You usually have to provide an API key in your requests to get a response. Although we’ll dive into authentication and authorization later, we need to get some API keys now to make requests to our weather API.

Why requests need authorization

Requiring authorization allows API publishers to do the following:

  • License access to the API
  • Rate limit the number of requests
  • Control availability of certain features within the API, and more

To run the code samples in this course, you will need to use your own API keys, since these keys are usually treated like passwords and not given out or published openly on a web page.

Activity: Get an OpenWeatherMap API key

To get an API key for the OpenWeatherMap API:

  1. Go to openweathermap.org.
  2. Click Sign Up in the top navigation bar and create an account.
  3. After you sign up, your API key is sent to the email address you provide.

    You can also find your API key on the site’s Developer Dashboard. (To find your API key on the site, return to the OpenWeatherMap homepage and click Sign in. After signing in, you’ll see the developer dashboard. Click the API Keys tab (highlighted in the screenshot below).

    API Keys tab on OpenWeatherMap Developer Dashboard
    API Keys tab on OpenWeatherMap Developer Dashboard
  4. Copy the key to a place you can easily find it.

(Note: It can take an hour or so for a new OpenWeatherMap API key to activate.)

Get the Aeris Weather API secret and ID

Now for contrast, let’s get the keys for the Aeris Weather API, using a free developer account. The Aeris Weather API requires both a secret and ID to make requests.

  1. Go to https://www.aerisweather.com/develop/api/ and click Free Trial.
  2. Click Sign Up for Developer. (The free developer version limits the number of requests you can make and expires in 30 days.)
  3. Complete the required fields to sign in. Click the activation email as well.
  4. After you sign up for an account, sign in and go to your Dashboard.
  5. Click Apps, and then click New Application.
  6. In the Add a New Application dialog box, enter the following:
    • Application Name: My biking app (or something)
    • Application Namespace: localhost
  7. Click Save App.

After registering your app, you should see an ID, secret, and namespace for the app. Copy this information into a place you can easily access since you’ll need it to make requests.

Keep in mind how users authorize calls with an API — this is something you usually cover in API documentation. Later in the course, we will dive into authorization methods in more detail.

Make sure you have a text editor

In the upcoming activities, you’ll work with code in a text file. When you’re working with code, you use a text editor (to work in plain text) instead of a rich text editor (which would provide a WYSIWYG interface). Here are a few choices for text editors:

These editors provide features that let you better manage the text. Choose the one you want. (My preference is to use Sublime Text when I’m working with independent code samples, and Atom when I’m working with Jekyll projects.) Avoid using TextEdit since it adds some formatting behind the scenes that can corrupt your content.

About Tom Johnson

Tom Johnson

I'm an API technical writer based in the Seattle area. On this blog, I write about topics related to technical writing and communication — such as software documentation, API documentation, AI, information architecture, content strategy, writing processes, plain language, tech comm careers, and more. Check out my API documentation course if you're looking for more info about documenting APIs. Or see my posts on AI and AI course section for more on the latest in AI and tech comm.

If you're a technical writer and want to keep on top of the latest trends in the tech comm, be sure to subscribe to email updates below. You can also learn more about me or contact me. Finally, note that the opinions I express on my blog are my own points of view, not that of my employer.

15% Complete

15/165 pages complete. Only 150 more pages to go.