Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
firebase-dynamic-links
Advanced tools
This package provides a wrapper for Firebase Dynamic Links and View Dynamic Links Analytics Data REST APIs. It aims to define types for this APIs.
In order to use this package, you can read Short Link API and Analytics API full API documentations.
The Firebase Dynamic Links is available on npm as firebase-dynamic-links
:
$ npm install --save firebase-dynamic-links
Take note of your project Web Api Key
from setting page of the Firebase console.
Import the package and then create an instance of the FirebaseDynamicLinks
as follow:
import { FirebaseDynamicLinks } from 'firebase-dynamic-links';
const firebaseDynamicLinks = new FirebaseDynamicLinks(/* Web Api Key */);
const { shortLink, previewLink } = await firebaseDynamicLinks.createLink({
longDynamicLink: 'https://example.page.link/?link=https://www.example.com/&apn=com.example.android&ibi=com.example.ios',
});
const { shortLink, previewLink } = await firebaseDynamicLinks.createLink({
dynamicLinkInfo: {
domainUriPrefix: 'https://example.page.link',
link: 'https://www.example.com/',
androidInfo: {
androidPackageName: 'com.example.android',
},
iosInfo: {
iosBundleId: 'com.example.ios',
},
},
});
const { shortLink, previewLink } = await firebaseDynamicLinks.createLink({
longDynamicLink: 'https://example.page.link/?link=http://www.example.com/&apn=com.example.android&ibi=com.example.ios',
suffix: {
option: 'UNGUESSABLE',
},
});
const { linkEventStats } = await firebaseDynamicLinks.getLinkStats('https://example.page.link/wXYz', 7, accessToken);
FAQs
unofficial package to create firebase dynamic links
The npm package firebase-dynamic-links receives a total of 8,617 weekly downloads. As such, firebase-dynamic-links popularity was classified as popular.
We found that firebase-dynamic-links 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.