
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
This is Ruby SDK for Hoiio API
Hoiio API is set of telephony API that integrate telephony services - phone calls, conference, IVR (Interactive Voice Responses), Fax and SMS - into your services and website easily.
Read the documentation at http://hoiio.readthedocs.org/
Add this line to your application's Gemfile:
gem 'hoiio'
And then execute:
$ bundle
Or install it yourself as:
$ gem install hoiio
require 'hoiio'
# Hoiio Application Credentials
app_id = ''
access_token = ''
# set up a client to talk to the Twilio REST API
@client = Hoiio::Client.new app_id, access_token
After a @client object has been created, app_id and access_token are cached and used for subsequent API calls. Normally, app_id won't change, but you can modify the client's access_token by reassigning it to a new one.
All API's URI specified in Hoiio Developer's website are included in this SDK and can be accessed conveniently.
For example, @client.sms will make all SMS APIs with the same name available, i.e: @client.sms.send will call /sms/send, @client.sms.query_status will fire a request to /sms/query_status (as specified here).
# send an SMS using Hoiio
@client.sms.send(
:dest => '+6591234567',
:msg => 'Hello Steve',
:notify_url => 'http://dev.example.com/sms/notify'
)
# call a destination number using Hoiio
@client.voice.call(
:dest2 => '+6591234567',
:caller_id => 'private'
)
Visit our API site to learn more about our powerful communication API.
FAQs
Unknown package
We found that hoiio 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
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.