DEAL Free Conferencing Service

wardmundy

Nerd Uno
Joined
Oct 12, 2007
Messages
19,168
Reaction score
5,199
Anonymous Calling by All Conferees
Unlimited Conferees
Unlimited Conference Duration
5-second Setup
No Sign Ups; No Credit Cards
Free Service except for the call to New York number
Backed by CallCentric

If this sounds like your kind of conferencing service, then give Anonochat a try. You can set up your conference with a web browser. If you do it from an iPhone, you're automatically connected and logged in.

If you're really paranoid, use our simple BASH script:

Code:
#!/bin/bash

RESULT=`curl https://api.anonochat.net/v1/get`

NUMBER=$(echo $RESULT | cut -f 2 -d ":" | cut -f 1 -d "," | cut -f 2 -d '"')
PIN=$(echo $RESULT | cut -f 3 -d ":" | cut -f 1 -d "," | cut -f 2 -d '"')
EXPIRES=$(echo $RESULT | cut -f 4 -d ":" | cut -f 1 -d "," | cut -f 2 -d '"')
TENDIGIT=${NUMBER:1}

clear
echo "Your free conference room is ready on anonochat.net:"

echo  Conference number to dial: $TENDIGIT
echo    Conference PIN to enter: $PIN
echo Conference expiration date: $EXPIRES
echo " "

echo "Your free conference room is ready on anonochat.com:" > anonochat.pin
echo " "   >> anonochat.pin
echo  Conference number to dial: $TENDIGIT  >> anonochat.pin
echo    Conference PIN to enter: $PIN  >> anonochat.pin
echo Conference expiration date: $EXPIRES  >> anonochat.pin
echo " "  >> anonochat.pin
 
Last edited:

sedwards

New Member
Joined
Mar 18, 2010
Messages
2
Reaction score
3
The script could be cleaned up a bit by using an array, tr, and tee -- eliminating the 'cut's and the duplicate echo's:

Code:
#!/bin/bash

    declare -a TOKENS
    DETAILS="${HOME}/anonochat.pin"

    RESULT=$(curl --silent https://api.anonochat.net/v1/get | tr -d '{}",')
    TOKENS=(${RESULT})
    TENDIGIT=${TOKENS[1]}

    (
    echo "Your free conference room is ready on anonochat.net:"
    echo
    echo " Conference number to dial: ${TENDIGIT:1:3}-${TENDIGIT:4:3}-${TENDIGIT:7:4}"
    echo "   Conference PIN to enter: ${TOKENS[3]}"
    echo "Conference expiration date: ${TOKENS[5]} ${TOKENS[6]}"
    echo
    ) | tee ${DETAILS}

    echo "The conference details have been stored in ${DETAILS}"

# (end of anonochat.sh)
 

Members online

Forum statistics

Threads
25,778
Messages
167,504
Members
19,198
Latest member
serhii
Get 3CX - Absolutely Free!

Link up your team and customers Phone System Live Chat Video Conferencing

Hosted or Self-managed. Up to 10 users free forever. No credit card. Try risk free.

3CX
A 3CX Account with that email already exists. You will be redirected to the Customer Portal to sign in or reset your password if you've forgotten it.
Top