Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

google-local-guides-api

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-local-guides-api

(Unofficial) Get your google contribution metadata using this api!

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

(Unofficial) Google Local Guides API

This npm package will give you functionality to get your contribution metadata from your google local guides profile.

The metadata you'll be able to grab using this module is located by going here: https://www.google.com/maps/contrib/

and then clicking on your points to pop up the modal full of attributes...

Go to the this project's github link to see the full readme with pictures.

Note: there is no authentication when using this package because it'll scrape your public profile page, which is accessible to everyone.

Quickstart

Installation

npm install google-local-guides-api

Usage

const ContributionMetadata = require('google-local-guides-api');

let contributionMetadata = new ContributionMetadata();

async function () {
    // This initializes your link into the response body -- has to be in async/await func
    let link = "https://www.google.com/maps/contrib/0123456789";
    await contributionMetadata.init(link);

    // You can call get specific attributes like points
    let points = contributionMetadata.getPoints();

    // ...Or use getMetadata() to get all available attributes from you profile
    let metadata = contributionMetadata.getMetadata();
}

What link are you talking about? The link that you need is your publicly available local guides link found here: https://www.google.com/maps/contrib/

When redirected to that link, the rest of the URL will populate with your google local guide ID and other information. You can just get the entire link and pass it in as the value as link.

If you want to have a clean link, this is the structure that you can use:

https://www.google.com/maps/contrib/0123456789

The last path will be your numerical ID.

Note: within your redirected link, you might have a lot of other params attached to it. It's fine to pass the entire url. Honeybadger don't care.

Endpoints

const ContributionMetadata = require('google-local-guides-api');

let contributionMetadata = new ContributionMetadata();

// This initializes your link into the response body -- has to be in async/await func
async function () {
    await contributionMetadata.init(link);

    // You can call get specific attributes like points
    // These all return string type of a number associated with
    // how many/how much for each attribute
    let points = contributionMetadata.getPoints();
    let level = contributionMetadata.getLevel();
    let reviews = contributionMetadata.getReviews();
    let ratings = contributionMetadata.getRatings();
    let questions = contributionMetadata.getQuestions();
    let placesAdded = contributionMetadata.getPlacesAdded();
    let edits = contributionMetadata.getEdits();
    let facts = contributionMetadata.getFacts();
    let videos = contributionMetadata.getVideos();
    let qa = contributionMetadata.getQA();
    let roadsAdded = contributionMetadata.getRoadsAdded();
    let listsPublished = contributionMetadata.getPublishedLists();

    // ...Or use getMetadata() to get all available attributes from you profile
    let metadata = contributionMetadata.getMetadata();
    // {
    //    points: string,
    //    level: string,
    //    reviews: string,
    //    ratings: string,
    //    questions: string,
    //    placesAdded: string,
    //    edits: string,
    //    facts: string,
    //    videos: string,
    //    qa: string,
    //    roadsAdded: string,
    //    listsPublished: string
    // }
}

Keywords

FAQs

Package last updated on 22 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc