![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.
A Node wrapper for the Clef API. Authenticate a user and access their information in two lines of code.
Install using npm:
npm install clef
The Clef API lets you retrieve information about a user after they log in to your site with Clef.
Create a Clef application to get your App ID and App secret.
The Clef button has a data-redirect-url
, which is where you'll be interacting with the Clef API.
When a user logs in with Clef, the browser will redirect to your data-redirect-url
. To retrieve user information, call getLoginInformation
in that endpoint:
var clef = require('clef').initialize({
appID: YOUR_APP_ID,
appSecret: YOUR_APP_SECRET
});
# In your redirect URL route:
var code = req.query.code;
clef.getLoginInformation({code: code}, function(err, userInformation) {
if (err) {
// Handle the error
} else {
var clefID = userInformation['id'];
}
});
For what to do after getting user information, check out our documentation on Associating users.
When you configure your Clef integration, you can also set up a logout hook URL. Clef sends a POST to this URL whenever a user logs out with Clef, so you can log them out on your website too.
var clef = require('clef').initialize({
appID: YOUR_APP_ID,
appSecret: YOUR_APP_SECRET
});
# In your logout hook route:
var logoutToken = req.body['logout_token']
clef.getLogoutInformation({logoutToken: logoutToken}, function(err, clefID) {
// log the user out
});
For what to do after getting a user who's logging out's clef_id
, see our
documentation on Database
logout.
Check out the API docs.
Access your developer dashboard.
FAQs
Clef API wrapper
The npm package clef receives a total of 2 weekly downloads. As such, clef popularity was classified as not popular.
We found that clef demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.