Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
apistore-sms
Advanced tools
A transporter for SMS/LMS/MMS via API Store SMS service
APIStore-SMSλ API Storeμμ μ 곡νλ SMS APIλ₯Ό Node.jsμμ μ½κ² νμ©νκΈ° μνμ¬ μμ±λ ν΄λΌμ΄μΈνΈ λͺ¨λμ λλ€.
$ npm install apistore-sms
var apistore = require('apistore-sms').createClient({
apiKey: 'YOUR_API_KEY',
apiId: 'YOUR_ID'
});
// SMS μ μ‘ (λ¨μΌ μμ μ)
apistore.sendSMS({
from: '15885588', // λ°μ μ λ²νΈ
to: '01012345678', // μμ μ λ²νΈ
text: 'Hot! Hot!', // λ΄μ©
subject: 'λλλ§μλ', // μ λͺ©(optional)
at: '20160801235959', // μμ½μκ°(optional)
author: 'Pizza Huuut' // λ°μ μ μ΄λ¦(optional)
}).then(function (cmid) {
console.log(cmid); // λ©μμ§ μμ΄λ
}).catch(function (error) {
console.log(error);
});
// SMS μ μ‘ (볡μ μμ μ)
apistore.sendSMS({
from: '15885588', // λ°μ μ λ²νΈ
to: ['01012345678', '010-2345-6789'], // μμ μ λ²νΈ
text: 'Hot! Hot!', // λ΄μ©
subject: 'λλλ§μλ', // μ λͺ©(optional)
at: '20160801235959', // μμ½μκ°(optional)
author: 'Pizza Huuut' // λ°μ μ μ΄λ¦(optional)
}).then(function (cmid) {
console.log(cmid); // λ©μμ§ μμ΄λ
}).catch(function (error) {
console.log(error);
});
// LMS μ μ‘
apistore.sendLMS({
from: '15885588', // λ°μ μ λ²νΈ
to: '01012345678', // μμ μ λ²νΈ
text: 'Hot! Hot!', // λ΄μ©
subject: 'λλλ§μλ', // μ λͺ©(optional)
at: '20160801235959', // μμ½μκ°(optional)
author: 'Pizza Huuut' // λ°μ μ μ΄λ¦(optional)
}).then(function (cmid) {
console.log(cmid); // λ©μμ§ μμ΄λ
}).catch(function (error) {
console.log(error);
});
// MMS μ μ‘
apistore.sendLMS({
from: '15885588', // λ°μ μ λ²νΈ
to: '01012345678', // μμ μ λ²νΈ
text: 'Hot! Hot!', // λ΄μ©
subject: 'λλλ§μλ', // μ λͺ©(optional)
file: path.join(__dirname, 'test.jpg'), // or fs.createReadStream(filepath)
at: '20160801235959', // μμ½μκ°(optional)
author: 'Pizza Huuut' // λ°μ μ μ΄λ¦(optional)
}).then(function (cmid) {
console.log(cmid); // λ©μμ§ μμ΄λ
}).catch(function (error) {
console.log(error);
});
// Report 보기
apistore.getReport('your_cmid')
.then(function (result) {
console.log(result);
}).catch(function (error) {
console.log(error);
});
If you have any questions, feel free to join me at #posquit0
on Freenode and ask away. Click here to connect.
FAQs
Send SMS with Node.js via API Store SMS service.
We found that apistore-sms 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.