SMS API for Python

Send SMS med vores API til Python nemt og sikkert. Prøv vores API til Python gratis. Vores team hjælper dig med at integrere SMS-afsendelse i din ansøgning på Python.

SMS API funktionalitet

Send SMS med Python

Este método le permite enviar SMS a un destinatario utilizando Python. Enviar un SMS con Python es tan sencillo como enviar el origin, destino y el mensaje a enviar a través de una petición a nuestra API.
import urllib2

afilnet_class="sms"
afilnet_method="sendsms"
afilnet_user="user"
afilnet_password="password"
afilnet_from="Afilnet"
afilnet_to="34600000000"
afilnet_sms="sms+test"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&from="+afilnet_from+"&to="+afilnet_to+"&sms="+afilnet_sms+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = urllib2.urlopen(sUrl).read()
from urllib.request import urlopen
from urllib.parse import urlencode

afilnet_class="sms"
afilnet_method="sendsms"
afilnet_user="user"
afilnet_password="password"
afilnet_from="Afilnet"
afilnet_to="34600000000"
afilnet_sms="sms+test"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/"

data = urlencode({"class": afilnet_class,"method": afilnet_method,"user": afilnet_user,"password": afilnet_password,"from": afilnet_from,"to": afilnet_to,"sms": afilnet_sms,"scheduledatetime": afilnet_scheduledatetime,"output": afilnet_output}).encode("utf-8")
	
result = urlopen(sUrl, data).read()
print(result)
import requests

afilnet_class="sms"
afilnet_method="sendsms"
afilnet_user="user"
afilnet_password="password"
afilnet_from="Afilnet"
afilnet_to="34600000000"
afilnet_sms="sms+test"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&from="+afilnet_from+"&to="+afilnet_to+"&sms="+afilnet_sms+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)
Parameter Beskrivelse Obligatorisk / valgfri
class=sms Klasse anmodet: Klasse, som anmodningen indgives til Obligatorisk
method=sendsms Anmodet om klassemetode: Metode for den klasse, som anmodningen indgives til Obligatorisk
user Bruger og e-mail på din Afilnet-konto Obligatorisk
password Adgangskode til din Afilnet-konto Obligatorisk
from Sender Obligatorisk
to Modtagerens mobiltelefonnummer Obligatorisk
sms SMS-meddelelse, der skal sendes Obligatorisk
scheduledatetime Afsendelsesdato og -tid i åååå-mm-dd hh:mm:ss-format Valgfri
output Outputformat for resultatet Valgfri
Svar:
  • status
  • resultat (hvis status = succes), her vil du modtage følgende værdier:
    • messageid
    • credits
  • fejl (hvis status = fejl), her vil du modtage fejlkoden

Fejlkoder:
Kode Beskrivelse
MISSING_USER Bruger eller e-mail er ikke inkluderet
MISSING_PASSWORD Adgangskode er ikke inkluderet
MISSING_CLASS Klasse ikke inkluderet
MISSING_METHOD Metode er ikke inkluderet
MISSING_COMPULSORY_PARAM Obligatorisk parameter ikke inkluderet
INCORRECT_USER_PASSWORD Forkert bruger eller adgangskode
INCORRECT_CLASS Forkert klasse
INCORRECT_METHOD Forkert metode
NO_ROUTE_AVAILABLE Der er ingen tilgængelige stier til den angivne destination
NO_CREDITS Din balance er utilstrækkelig

Send SMS fra skabelon med Python

import requests

afilnet_class="sms"
afilnet_method="sendsms"
afilnet_user="user"
afilnet_password="password"
afilnet_from="Afilnet"
afilnet_to="34600000000"
afilnet_sms="sms+test"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&from="+afilnet_from+"&to="+afilnet_to+"&sms="+afilnet_sms+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)import urllib2

afilnet_class="sms"
afilnet_method="sendsmsfromtemplate"
afilnet_user="user"
afilnet_password="password"
afilnet_to="34600000000"
afilnet_idtemplate="1000"
afilnet_params="mobile:123456789,name:test+name"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&to="+afilnet_to+"&idtemplate="+afilnet_idtemplate+"¶ms="+afilnet_params+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = urllib2.urlopen(sUrl).read()
from urllib.request import urlopen
from urllib.parse import urlencode

afilnet_class="sms"
afilnet_method="sendsmsfromtemplate"
afilnet_user="user"
afilnet_password="password"
afilnet_to="34600000000"
afilnet_idtemplate="1000"
afilnet_params="mobile:123456789,name:test+name"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/"

data = urlencode({"class": afilnet_class,"method": afilnet_method,"user": afilnet_user,"password": afilnet_password,"to": afilnet_to,"idtemplate": afilnet_idtemplate,"params": afilnet_params,"scheduledatetime": afilnet_scheduledatetime,"output": afilnet_output}).encode("utf-8")
	
result = urlopen(sUrl, data).read()
print(result)
import requests

afilnet_class="sms"
afilnet_method="sendsmsfromtemplate"
afilnet_user="user"
afilnet_password="password"
afilnet_to="34600000000"
afilnet_idtemplate="1000"
afilnet_params="mobile:123456789,name:test+name"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&to="+afilnet_to+"&idtemplate="+afilnet_idtemplate+"¶ms="+afilnet_params+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)
Parameter Beskrivelse Obligatorisk / valgfri
class=sms Klasse anmodet: Klasse, som anmodningen indgives til Obligatorisk
method=sendsmsfromtemplate Anmodet om klassemetode: Metode for den klasse, som anmodningen indgives til Obligatorisk
user Bruger og e-mail på din Afilnet-konto Obligatorisk
password Adgangskode til din Afilnet-konto Obligatorisk
to Destinationens mobilnummer Obligatorisk
idtemplate Skabelon-ID Obligatorisk
params Parametre, der skal erstattes i skabelonen til tilpasning (< >), adskilt af, (kommaer) Valgfri
scheduledatetime Leveringsdato og -tid i åååå-mm-dd tt: mm: ss-format Valgfri
output Outputformat for resultatet Valgfri
Svar:
  • status
  • resultat (hvis status = succes), her vil du modtage følgende værdier:
    • messageid
    • credits
  • fejl (hvis status = fejl), her vil du modtage fejlkoden

Fejlkoder:
Kode Beskrivelse
MISSING_USER Bruger eller e-mail er ikke inkluderet
MISSING_PASSWORD Adgangskode er ikke inkluderet
MISSING_CLASS Klasse ikke inkluderet
MISSING_METHOD Metode er ikke inkluderet
MISSING_COMPULSORY_PARAM Obligatorisk parameter ikke inkluderet
INCORRECT_USER_PASSWORD Forkert bruger eller adgangskode
INCORRECT_CLASS Forkert klasse
INCORRECT_METHOD Forkert metode
NO_ROUTE_AVAILABLE Der er ingen tilgængelige stier til den angivne destination
NO_CREDITS Din balance er utilstrækkelig
NOT_ACCESS_TO_TEMPLATE Du har ikke adgang til den valgte skabelon

Send bulk SMS med Python

Con este método puede enviar con Python campañas de SMS Masivo a grupos de contactos que haya creado. Incluya el grupo, el prefijo del país, el remitente, el SMS a enviar. Este método le permite enviar campañas de SMS Masivo sin limite de destinatarios con Python.
import requests

afilnet_class="sms"
afilnet_method="sendsmsfromtemplate"
afilnet_user="user"
afilnet_password="password"
afilnet_to="34600000000"
afilnet_idtemplate="1000"
afilnet_params="mobile:123456789,name:test+name"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&to="+afilnet_to+"&idtemplate="+afilnet_idtemplate+"¶ms="+afilnet_params+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)import urllib2

afilnet_class="sms"
afilnet_method="sendsmstogroup"
afilnet_user="user"
afilnet_password="password"
afilnet_from="Afilnet"
afilnet_countrycode="34"
afilnet_idgroup="1"
afilnet_sms="sms+test"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&from="+afilnet_from+"&countrycode="+afilnet_countrycode+"&idgroup="+afilnet_idgroup+"&sms="+afilnet_sms+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = urllib2.urlopen(sUrl).read()
from urllib.request import urlopen
from urllib.parse import urlencode

afilnet_class="sms"
afilnet_method="sendsmstogroup"
afilnet_user="user"
afilnet_password="password"
afilnet_from="Afilnet"
afilnet_countrycode="34"
afilnet_idgroup="1"
afilnet_sms="sms+test"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/"

data = urlencode({"class": afilnet_class,"method": afilnet_method,"user": afilnet_user,"password": afilnet_password,"from": afilnet_from,"countrycode": afilnet_countrycode,"idgroup": afilnet_idgroup,"sms": afilnet_sms,"scheduledatetime": afilnet_scheduledatetime,"output": afilnet_output}).encode("utf-8")
	
result = urlopen(sUrl, data).read()
print(result)
import requests

afilnet_class="sms"
afilnet_method="sendsmstogroup"
afilnet_user="user"
afilnet_password="password"
afilnet_from="Afilnet"
afilnet_countrycode="34"
afilnet_idgroup="1"
afilnet_sms="sms+test"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&from="+afilnet_from+"&countrycode="+afilnet_countrycode+"&idgroup="+afilnet_idgroup+"&sms="+afilnet_sms+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)
Parameter Beskrivelse Obligatorisk / valgfri
class=sms Klasse anmodet: Klasse, som anmodningen indgives til Obligatorisk
method=sendsmstogroup Anmodet om klassemetode: Metode for den klasse, som anmodningen indgives til Obligatorisk
user Bruger og e-mail på din Afilnet-konto Obligatorisk
password Adgangskode til din Afilnet-konto Obligatorisk
from Sender Obligatorisk
countrycode Landsopkaldskode Obligatorisk
idgroup Modtagergruppe-id Obligatorisk
sms SMS-meddelelse, der skal sendes Obligatorisk
scheduledatetime Dato og tidspunkt for levering i åååå-mm-dd hh:mm:ss-format Valgfri
output Outputformat for resultatet Valgfri
Svar:
  • status
  • resultat (hvis status = succes), her vil du modtage følgende værdier:
    • id
    • count
    • credits
    • destinations
      • messageid
      • destination
  • fejl (hvis status = fejl), her vil du modtage fejlkoden

Fejlkoder:
Kode Beskrivelse
MISSING_USER Bruger eller e-mail er ikke inkluderet
MISSING_PASSWORD Adgangskode er ikke inkluderet
MISSING_CLASS Klasse ikke inkluderet
MISSING_METHOD Metode er ikke inkluderet
MISSING_COMPULSORY_PARAM Obligatorisk parameter ikke inkluderet
INCORRECT_USER_PASSWORD Forkert bruger eller adgangskode
INCORRECT_CLASS Forkert klasse
INCORRECT_METHOD Forkert metode
NOT_ACCESS_TO_GROUP Du har ikke adgang til den angivne gruppe
NO_CREDITS Din balance er utilstrækkelig

Send bulk SMS fra skabelon med Python

import requests

afilnet_class="sms"
afilnet_method="sendsmstogroup"
afilnet_user="user"
afilnet_password="password"
afilnet_from="Afilnet"
afilnet_countrycode="34"
afilnet_idgroup="1"
afilnet_sms="sms+test"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&from="+afilnet_from+"&countrycode="+afilnet_countrycode+"&idgroup="+afilnet_idgroup+"&sms="+afilnet_sms+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)import urllib2

afilnet_class="sms"
afilnet_method="sendsmstogroupfromtemplate"
afilnet_user="user"
afilnet_password="password"
afilnet_countrycode="34"
afilnet_idgroup="1"
afilnet_idtemplate="1000"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&countrycode="+afilnet_countrycode+"&idgroup="+afilnet_idgroup+"&idtemplate="+afilnet_idtemplate+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = urllib2.urlopen(sUrl).read()
from urllib.request import urlopen
from urllib.parse import urlencode

afilnet_class="sms"
afilnet_method="sendsmstogroupfromtemplate"
afilnet_user="user"
afilnet_password="password"
afilnet_countrycode="34"
afilnet_idgroup="1"
afilnet_idtemplate="1000"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/"

data = urlencode({"class": afilnet_class,"method": afilnet_method,"user": afilnet_user,"password": afilnet_password,"countrycode": afilnet_countrycode,"idgroup": afilnet_idgroup,"idtemplate": afilnet_idtemplate,"scheduledatetime": afilnet_scheduledatetime,"output": afilnet_output}).encode("utf-8")
	
result = urlopen(sUrl, data).read()
print(result)
import requests

afilnet_class="sms"
afilnet_method="sendsmstogroupfromtemplate"
afilnet_user="user"
afilnet_password="password"
afilnet_countrycode="34"
afilnet_idgroup="1"
afilnet_idtemplate="1000"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&countrycode="+afilnet_countrycode+"&idgroup="+afilnet_idgroup+"&idtemplate="+afilnet_idtemplate+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)
Parameter Beskrivelse Obligatorisk / valgfri
class=sms Klasse anmodet: Klasse, som anmodningen indgives til Obligatorisk
method=sendsmstogroupfromtemplate Anmodet om klassemetode: Metode for den klasse, som anmodningen indgives til Obligatorisk
user Bruger og e-mail på din Afilnet-konto Obligatorisk
password Adgangskode til din Afilnet-konto Obligatorisk
countrycode Landekode Obligatorisk
idgroup Destinationsgruppe-ID Obligatorisk
idtemplate Skabelon-ID Obligatorisk
scheduledatetime Leveringsdato og -tid i åååå-mm-dd tt: mm: ss-format Valgfri
output Outputformat for resultatet Valgfri
Svar:
  • status
  • resultat (hvis status = succes), her vil du modtage følgende værdier:
    • id
    • count
    • credits
    • destinations
      • messageid
      • destination
  • fejl (hvis status = fejl), her vil du modtage fejlkoden

Fejlkoder:
Kode Beskrivelse
MISSING_USER Bruger eller e-mail er ikke inkluderet
MISSING_PASSWORD Adgangskode er ikke inkluderet
MISSING_CLASS Klasse ikke inkluderet
MISSING_METHOD Metode er ikke inkluderet
MISSING_COMPULSORY_PARAM Obligatorisk parameter ikke inkluderet
INCORRECT_USER_PASSWORD Forkert bruger eller adgangskode
INCORRECT_CLASS Forkert klasse
INCORRECT_METHOD Forkert metode
NOT_ACCESS_TO_GROUP Du har ikke adgang til den angivne gruppe
NO_CREDITS Din balance er utilstrækkelig

Få SMS-leveringsstatus med Python

import requests

afilnet_class="sms"
afilnet_method="sendsmstogroupfromtemplate"
afilnet_user="user"
afilnet_password="password"
afilnet_countrycode="34"
afilnet_idgroup="1"
afilnet_idtemplate="1000"
afilnet_scheduledatetime=""
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&countrycode="+afilnet_countrycode+"&idgroup="+afilnet_idgroup+"&idtemplate="+afilnet_idtemplate+"&scheduledatetime="+afilnet_scheduledatetime+"&output="+afilnet_output
	
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)import urllib2

afilnet_class="sms"
afilnet_method="getdeliverystatus"
afilnet_user="user"
afilnet_password="password"
afilnet_messages="123456,123457,123458"
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&messages="+afilnet_messages+"&output="+afilnet_output
	
result = urllib2.urlopen(sUrl).read()
from urllib.request import urlopen
from urllib.parse import urlencode

afilnet_class="sms"
afilnet_method="getdeliverystatus"
afilnet_user="user"
afilnet_password="password"
afilnet_messages="123456,123457,123458"
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/http/"

data = urlencode({"class": afilnet_class,"method": afilnet_method,"user": afilnet_user,"password": afilnet_password,"messages": afilnet_messages,"output": afilnet_output}).encode("utf-8")
	
result = urlopen(sUrl, data).read()
print(result)
import requests

afilnet_class="sms"
afilnet_method="getdeliverystatus"
afilnet_user="user"
afilnet_password="password"
afilnet_messages="123456,123457,123458"
afilnet_output=""

# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&messages="+afilnet_messages+"&output="+afilnet_output
	
result = requests.get(sUrl,auth=requests.auth.HTTPBasicAuth(afilnet_user,afilnet_password))
print(result.text)
Parameter Beskrivelse Obligatorisk / valgfri
class=sms Klasse anmodet: Klasse, som anmodningen indgives til Obligatorisk
method=getdeliverystatus Anmodet om klassemetode: Metode for den klasse, som anmodningen indgives til Obligatorisk
user Bruger og e-mail på din Afilnet-konto Obligatorisk
password Adgangskode til din Afilnet-konto Obligatorisk
messages Liste over forsendelsesidentifikatorer adskilt af komma (,) Obligatorisk
output Outputformat for resultatet Valgfri
Svar:
  • status
  • resultat (hvis status = succes), her vil du modtage følgende værdier:
    • messageid
    • sms
    • deliverydate
    • deliverystatus
  • fejl (hvis status = fejl), her vil du modtage fejlkoden

Fejlkoder:
Kode Beskrivelse
MISSING_USER Bruger eller e-mail er ikke inkluderet
MISSING_PASSWORD Adgangskode er ikke inkluderet
MISSING_CLASS Klasse ikke inkluderet
MISSING_METHOD Metode er ikke inkluderet
MISSING_COMPULSORY_PARAM Obligatorisk parameter ikke inkluderet
INCORRECT_USER_PASSWORD Forkert bruger eller adgangskode
INCORRECT_CLASS Forkert klasse
INCORRECT_METHOD Forkert metode

SMS API til

Returnerer leveringsstatus for certificeret sms med PHP Returnerer leveringsstatus for certificeret sms med Java Returnerer leveringsstatus for certificeret sms med C Sharp Returnerer leveringsstatus for certificeret sms med Unix Returnerer leveringsstatus for certificeret sms med Ruby on rails Returnerer leveringsstatus for certificeret sms med Python Returnerer leveringsstatus for certificeret sms med Android Returnerer leveringsstatus for certificeret sms med Objective C / iPhone Returnerer leveringsstatus for certificeret sms med SQL Server Returnerer leveringsstatus for certificeret sms med Oracle Returnerer leveringsstatus for certificeret sms med Node JS Returnerer leveringsstatus for certificeret sms med Go lang Returnerer leveringsstatus for certificeret sms med Scala lang Returnerer leveringsstatus for certificeret sms med Swift Returnerer leveringsstatus for certificeret sms med Delphi

Afilnet tilbyder dig metoder til at forbedre sikkerheden, når du bruger vores API med Python, takket være muligheden for at oprette adgange og muligheden for at aktivere filtrering efter IP.

Hvilken API til Python skal jeg bruge?

Opdag fordelene og ulemperne ved hver af vores API'er. Find ud af, hvilken API der er bedst til din software på Python.

Denne API giver dig mulighed for at oprette forbindelse til os fra Python for at sende anmodninger via HTTP GET-anmodninger. Denne anmodning sender parametrene i samme URL som anmodningen.

  • HTTP GET er ekstremt simpelt at implementere
  • Oplysninger sendes ukrypteret (adgangskoder kan udtrækkes fra logfiler eller cache)
  • Maksimal anmodning på ~4000 tegn

POST request API giver dig mulighed for at oprette forbindelse til vores API fra Python ved at sende anmodningsparametre via HTTP POST-parametre. Oplysningerne sendes uafhængigt af URL'en.

  • HTTP POST er enkel at implementere
  • Information sendes krypteret
  • Der er ingen grænse for størrelsen af anmodningen
  • Middel sikkerhed

Den grundlæggende autentificerings-API tillader brugen af GET- og POST-anmodninger på Python med et ekstra sikkerhedslag, da brugernavnet og adgangskoden i dette tilfælde sendes i overskriften på anmodningen.

  • Grundlæggende godkendelse er nem at implementere
  • Adgangsdata sendes krypteret
  • Størrelsesgrænsen afhænger af brugen af GET eller POST
  • Middel sikkerhed

SOAP giver dig mulighed for at sende anmodninger i XML-format med Python, SOAP tilføjer et ekstra lag af sikkerhed til API-anmodninger.

  • SOAP-integration er mere kompleks
  • Information sendes krypteret
  • Der er ingen grænse for størrelsen af anmodningen
  • Middel / Høj sikkerhed

Vores JSON API giver dig mulighed for at sende anmodninger i JSON-format med Python, derudover tilføjer denne API oAuth 2.0-protokollen i godkendelsen, der giver dig mulighed for at tilføje et ekstra lag af sikkerhed.

  • JSON oAuth 2.0-integration er mere kompleks
  • Information sendes krypteret
  • Der er ingen grænse for størrelsen af anmodningen
  • Høj sikkerhed

Opret forbindelse {sprog} med vores SMS API

Vores SMS API giver dig mulighed for at sende SMS eller køre kampagner nemt, hurtigt og effektivt. Den proces, du skal følge for at kunne bruge vores API, vil kun tage et par minutter. Vores firma vil tilbyde dig en gratis prøveperiode, så du kan sende SMS med Python.

01

Registrer dig som klient

For at få adgang til API'en skal du være en Afilnet-klient. Registrering vil tage et par minutter.

02

Anmod om din gratis prøveperiode

Vores firma vil tilbyde dig en prøvebalance, der giver dig mulighed for at teste med den API, du har brug for.

03

Integrer API

Udfør API-integration ved hjælp af det programmeringssprog, du vælger. Hvis du har spørgsmål eller forslag til API'et, så kontakt os

04

Velkommen til Afilnet!

Alt klar !, har formået at forbedre sin kommunikation med Afilnet. Vi er her for at støtte vores API, når du har brug for det


Kontakt vores team med eventuelle spørgsmål gennem de kontaktmetoder, vi tilbyder. Vores team vil forsøge at tilbyde dig en øjeblikkelig løsning og vil hjælpe dig med integrationen af vores API i din software.

Prøv Afilnet gratis!

Tilmeld dig gratis, og prøv Afilnet! Vi tilbyder dig en gratis prøveperiode på vores tjenester. *



(*) Kampagnen gælder kun for virksomheder, der aldrig har brugt Afilnet-tjenesten før. Når du anmoder om den gratis saldo, kan Afilnet anmode om at bekræfte dine virksomhedsoplysninger


Bulk SMS · E-mail-marketing · Socialt netværk · Øjeblikkelig udveksling af beskeder · Certificering · og meget mere
Blive ved VIGTIG INFORMATION OM COOKIES: Hvis du fortsætter med at bruge denne web, antager vi, at du accepterer vilkårene for brug. Du finder flere oplysninger i vores cookiepolitik.
Betalingsmetoder
Bankoverførsel
Kreditkort
Paypal
Western Union
Skrill
Crypto
Afilnet på dit sprog

Copyright © 2023 Afilnet · Alle rettigheder forbeholdes