![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.
npm install reddit
This package is used by BitMidi to post MIDI files to the /r/BitMidi subreddit.
First, create a Reddit App.
Now, let's take an action on Reddit:
const Reddit = require('reddit')
const reddit = new Reddit({
username: 'TODO',
password: 'TODO',
appId: 'TODO',
appSecret: 'TODO',
userAgent: 'MyApp/1.0.0 (http://example.com)'
})
// Submit a link to the /r/BitMidi subreddit
await reddit.post('/api/submit', {
sr: 'BitMidi',
kind: 'link',
resubmit: true,
title: 'Testing out the reddit npm package!',
url: 'https://bitmidi.com'
})
reddit = new Reddit(opts)
Create a new Reddit API client.
You must provide opts
, an object with the following required properties:
username
- Username of the reddit userpassword
- Password of the reddit userappId
- Reddit App IDappSecret
- Reddit App SecretThe following opts
properties are optional:
opts.userAgent
- String to use as the User-Agent
header in http requestsreddit.get(url, data)
Invoke the Reddit API using the GET
HTTP method.
The url
parameter is used to specify which API to invoke. For example, /api/submit
or /api/vote
. A complete listing of possible APIs is available in the Reddit API documentation.
The data
parameter is used to specify relevant data for the selected API. The necessary data varies depending on which API is being used. Again, see the Reddit API documentation.
reddit.post(url, data)
Invoke the Reddit API using the POST
HTTP method.
reddit.patch(url, data)
Invoke the Reddit API using the PATCH
HTTP method.
reddit.put(url, data)
Invoke the Reddit API using the PUT
HTTP method.
reddit.delete(url, data)
Invoke the Reddit API using the DELETE
HTTP method.
The Prosperity Public License. Copyright (c) Feross Aboukhadijeh.
To obtain a commercial license, visit feross.org/commercial.
FAQs
Simple Reddit API client
We found that reddit 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.