
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
afpnews-api
Advanced tools
This project is aimed to help javascript developers use the AFP News API.
It provides authentication, searching for documents function, and online news product.
This package is available both for NodeJS and browsers. That's why two versions are available on the ./dist
directory.
Read the API documentation, and ask for an API Key and credentials.
npm install --save afpnews-api
const AfpNews = require('afpnews-api')
// OR using import
import AfpNews from 'afpnews-api'
<script src="./dist/afpnews-api.umd.js"></script>
// Initialize the API
const afpNews = new AfpNews({
clientId: 'YOUR_CLIENT_ID',
clientSecret: 'YOUR_CLIENT_SECRET',
saveToken: token => {
// You can eventually save the token to be used later
console.log(token)
}
})
// Search for latest documents
afpNews
.authenticate({
username: 'YOUR_USERNAME',
password: 'YOUR_PASSWORD'
})
.then(() => afpNews.search())
.then(({ documents }) => {
console.log(documents)
})
// Get a specific document
afpNews
.get('A_SPECIFIC_UNO')
.then(document => {
console.log(document)
})
// Look for similar documents
afpNews
.mlt('A_SPECIFIC_UNO')
.then(({ documents }) => {
console.log(documents)
})
// Display the most used slugs
afpNews
.list('slug')
.then(({ keywords }) => {
console.log(keywords)
})
// Display the available topics for a specific language
afpNews
.topics('fr')
.then(({ topics }) => {
console.log(topics)
})
// Display the editor's choice for a specific topic
afpNews
.topicIndex('Sport', 'fr')
.then(({ documents }) => {
console.log(documents)
})
// Display the feed for a specific topic
afpNews
.topicFeed('Sport', 'fr')
.then(({ documents }) => {
console.log(documents)
})
The above request use default parameters stored in ./src/default-search-params.js
You can pass your own parameters to the search function, that will overide the defaults :
afpNews.search({
products: ['news'],
langs: ['fr'],
urgencies: [1, 2, 3, 4],
query: 'french politics',
size: 10,
dateFrom: '2012-01-01',
dateTo: 'now',
sortField: 'published',
sortOrder: 'desc'
})
The query parameter can be used to look precisely for a field (title:Macron
) and may include logical parameters (Macron OR Merkel
, Macron AND NOT Merkel
, title:(Macron OR Merkel) AND country:fra
).
Clone the repository, then npm install
Build and minify your work for browsers and node with npm run build
Just npm test
to execute all tests in ./tests
You will need some environment variables in a .env file :
AFPNEWS_BASE_URL=
AFPNEWS_API_KEY=
AFPNEWS_CLIENT_ID=
AFPNEWS_CLIENT_SECRET=
AFPNEWS_USERNAME=
AFPNEWS_PASSWORD=
AFPNEWS_CUSTOM_AUTH_URL=https://
This project is licensed under the MIT License - see the LICENSE.md file for details
FAQs
Node helper functions to authenticate and fetch AFP News API
We found that afpnews-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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.