Skip to content

Latest commit

 

History

History
 
 

url-shortener

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Shortens URLs automatically using the Google URL Shortener API.

This template shows how to shorten URLs automatically as they are added.

Functions Code

See file functions/index.js for the code.

This uses the Google URL Shortener API.

The dependencies are listed in functions/package.json.

Setting up the sample

  • Create a Firebase project using the Firebase Console.
  • Enable the URL Shortener API on your Firebase Project.
  • Set the sample ot use your Firebase project using firebase use --add and select your new Firebase project.
  • Find your Firebase API Server key in the Firebase Console under Project Settings > Cloud Messaging > Legacy server key
  • Add your Firebase API Server key to your Firebase project configuration:
    firebase functions:config:set keys.firebase_api=<YOUR FIREBASE API KEY>
  • Deploy the function using firebase deploy
  • Manually add an object to the Realtime Database following the structure described below.

Sample Database Structure

We'll be using a simple database structure:

/functions-project-12345
    /links
        link-123456: "https://my.super.long-link.com/api/user/profile/-jEHitne10395-k3593085"

When a new URL (string) is pushed to /links, it gets replaced with an object containing the original URL and a shortened one. This way, you can display a clean URL by fetching /links/$linkId/short.

/functions-project-12345
    /links
        /link-123456
            original: "https://my.super.long-link.com/api/user/profile/-jEHitne10395-k3593085",
            short: "https://goo.gl/EKDdza"