![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
google-local-guides-api
Advanced tools
(Unofficial) Get your google contribution metadata using this 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.
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.
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
// }
}
FAQs
(Unofficial) Get your google contribution metadata using this api!
We found that google-local-guides-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.