
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Access the Nuntium API in Ruby.
gem install nuntium_api
gem 'nuntium_api'
require 'rubygems'
require 'nuntium'
api = Nuntium.new "service_url", "account_name", "application_name", "application_password"
message = {
:from => "sms://1234",
:to => "sms://5678",
:body => "Hello Nuntium!",
}
# Send an Application Originated message.
response = api.send_ao message
# Can also send many messages at once
messages = [{:to => "sms://1", :body => 'One'}, {:to => "sms://2", :body => 'Two'}]
response = api.send_ao messages
# Simulate sending and get a list of candidate channels
api.get_candidate_channels_for_ao message
# Get all countries
countries = api.countries
# Get all carriers that belong to a specific country
carriers = api.carriers countries[0].iso2
# Get all channels
channels = api.channels
# Create a channel
api.create_channel {
:name => "my_channel",
:kind => "clickatell",
:protocol => "sms",
:direction =>"bidirectional",
:enabled => true,
:priority => 10,
:configuration => {:password => "secret"}
}
FAQs
Unknown package
We found that nuntium_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.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.