![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
fbapp-test-users
Advanced tools
List, create, update and delete Facebook test users for an application
A node module to manage Facebook Test Users of an application.
$ npm install fbapp-test-users
var FbTestUsers = require('fbapp-test-users');
var FbTestUsers = require('fbapp-test-users');
FbTestUsers.setAppId('XXXX');
FbTestUsers.setAppSecret('YYYY');
Retrieve the list of test users.
FbTestUsers.getList(50)
.then(function(list) {
// Example:
/*
[
{
id: '123456789',
loginUrl: 'https://developers.facebook.com/checkpoint/test-user-login/123456789/',
accessToken: 'XXXXXXXXXX',
name: 'Open Graph Test User',
link: 'http://www.facebook.com/123456789'
}
]
*/
});
Create a test user.
See the fields in the official documentation.
FbTestUsers.createUser({
installed: false,
name: 'Batman'
})
.then(function(createdUser) {
// Example:
/*
{
id: '123456789',
email: 'xxx',
login_url: 'https://developers.facebook.com/checkpoint/test-user-login/123456789/',
password: '1876562816'
}
*/
});
Update a test user.
name
and password
can be null if you don't want to update the name or password.
FbTestUsers.updateUser(user.id, 'New name', 'New password')
.then(function success(res) {
// This function returns the result of the operation [true|false]
// Example:
/*
{
success: true
}
*/
});
Delete a test user.
FbTestUsers.deleteUser(user.id)
.then(function success(res) {
// This function returns the result of the operation [true|false]
// Example:
/*
{
success: true
}
*/
});
MIT, see LICENSE.md for details.
FAQs
List, create, update and delete Facebook test users for an application
The npm package fbapp-test-users receives a total of 0 weekly downloads. As such, fbapp-test-users popularity was classified as not popular.
We found that fbapp-test-users 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
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.