Lav bulk SMS- kampagner, send advarsler, aftaler eller underretninger via SMS.
Send beskeder via automatiserede digitale taleopkald til ethvert telefonnummer i verden.
Send SMS med certificeret indhold, gyldigt som pålidelig dokumentation.
Send SMS fra din e-mail-konto på samme måde som du sender en e-mail
Kør e-mail-marketingkampagner, automatiser kampagner og opret forbindelse til e-mail på en avanceret måde
Send certificeret kommunikation med certificeret e-mail fra din e-mail-konto
SMTP-server til at sende e-mails optimeret til at forbedre dine e-mail-marketingkampagner
Opret destinationssider til dine e-mail-kampagner og tiltræk nye kunder
Opret kontrakter og send dem gennem enhver kanal, underskriv kontrakter med håndskrift
Generer og send adgangskoder til engangsbrug gennem enhver kanal
Forøg sikkerheden i dine applikationer ved at implementere dobbeltbrugergodkendelse
Forbind din virksomhed med WhatsAPP. Send underretninger og tal med dine kunder
Automatiser chatsamtaler med dine kunder ved hjælp af chatbots.
Opret forbindelse med nye klienter takket være vores webchat-service
Gennemfør en kvalitetsundersøgelse og kend dine kunders mening
Loyalitet dine kunder ved at sende personlige rabatkuponer.
Automatiser marketingkampagner og vind automatisk loyalitet
Generer QR-koder helt gratis fra enhver URL.
Opret destinationssider takket være vores landingseditor og send dem via SMS, e-mail eller brug som du ønsker.
Generer en WhatsAPP-webchat til dit websted, der er kompatibel med alle platforme
Opret smukke brugerdefinerede formularer og opbyg lovligt databaser til dine marketingkampagner
Send SMS fra din software med vores API
Send Certificeret SMS, tjek leveringsstatus og download certifikater ved hjælp af vores API.
Foretag opkald automatisk fra din software
Send og automatiser afsendelsen af e-mails via API, forbind din software med Email Marketing
Opret forbindelse til dine kunder ved hjælp af WhatsAPP via API
Administrer Chat-systemet fra API. Få adgang til eller svar på samtaler fra vores API.
Send OTP-koder, eller integrer 2-faktor-godkendelse med vores API til Java nemt og sikkert. Prøv vores API til Java gratis. Vores team hjælper dig med at forbedre sikkerheden og godkendelsen af din app på Java.
String afilnet_class="otp"; String afilnet_method="generateotp"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_type="number"; String afilnet_destination="34600000000"; String afilnet_time="1"; String afilnet_timetype="days"; String afilnet_length="6"; String afilnet_otpformat="all"; String afilnet_output=""; // Create an URL request String sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&type="+afilnet_type+"&destination="+afilnet_destination+"&time="+afilnet_time+"&timetype="+afilnet_timetype+"&length="+afilnet_length+"&otpformat="+afilnet_otpformat+"&output="+afilnet_output; URL url = new URL(sUrl); StringBuilder builder = new StringBuilder(); BufferedReader theJSONline = new BufferedReader(new InputStreamReader(url.openStream())); builder.append(theJSONline.readLine()); String content = builder.toString();
String afilnet_class="otp"; String afilnet_method="generateotp"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_type="number"; String afilnet_destination="34600000000"; String afilnet_time="1"; String afilnet_timetype="days"; String afilnet_length="6"; String afilnet_otpformat="all"; String afilnet_output=""; // Create the POST request String post = "class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&type="+afilnet_type+"&destination="+afilnet_destination+"&time="+afilnet_time+"&timetype="+afilnet_timetype+"&length="+afilnet_length+"&otpformat="+afilnet_otpformat+"&output="+afilnet_output; // We generate the URL URL myurl = new URL("https://www.afilnet.com/api/http/"); // We create the connection HttpURLConnection con = (HttpURLConnection) myurl.openConnection(); con.setDoOutput(true); con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); con.setRequestProperty("Content-Length", String.valueOf(post.length())); con.setRequestMethod("POST"); // We build the OutputStream os = con.getOutputStream(); os.write(post.getBytes()); os.close(); StringBuilder sb = new StringBuilder(); int HttpResult = con.getResponseCode(); if(HttpResult == HttpURLConnection.HTTP_OK) { BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(),"utf-8")); String line = null; while ((line = br.readLine()) != null) { sb.append(line + "\n"); } br.close(); System.out.println(""+sb.toString()); } else { System.out.println(con.getResponseCode()); System.out.println(con.getResponseMessage()); }
String afilnet_class="otp"; String afilnet_method="generateotp"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_type="number"; String afilnet_destination="34600000000"; String afilnet_time="1"; String afilnet_timetype="days"; String afilnet_length="6"; String afilnet_otpformat="all"; String afilnet_output=""; // Create the POST request String post = "class="+afilnet_class+"&method="+afilnet_method+"&type="+afilnet_type+"&destination="+afilnet_destination+"&time="+afilnet_time+"&timetype="+afilnet_timetype+"&length="+afilnet_length+"&otpformat="+afilnet_otpformat+"&output="+afilnet_output; // We generate the URL URL myurl = new URL("https://www.afilnet.com/api/basic/"); // We create the connection HttpURLConnection con = (HttpURLConnection) myurl.openConnection(); String encoded = Base64.getEncoder().encodeToString((afilnet_user+":"+afilnet_password).getBytes(StandardCharsets.UTF_8)); con.setRequestProperty("Authorization", "Basic "+encoded); con.setDoOutput(true); con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); con.setRequestProperty("Content-Length", String.valueOf(post.length())); con.setRequestMethod("POST"); // We build the OutputStream os = con.getOutputStream(); os.write(post.getBytes()); os.close(); StringBuilder sb = new StringBuilder(); int HttpResult = con.getResponseCode(); if(HttpResult == HttpURLConnection.HTTP_OK) { BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(),"utf-8")); String line = null; while ((line = br.readLine()) != null) { sb.append(line + "\n"); } br.close(); System.out.println(""+sb.toString()); } else { System.out.println(con.getResponseCode()); System.out.println(con.getResponseMessage()); }
String afilnet_class="otp"; String afilnet_method="generateotp"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_type="number"; String afilnet_destination="34600000000"; String afilnet_time="1"; String afilnet_timetype="days"; String afilnet_length="6"; String afilnet_otpformat="all"; String afilnet_output=""; // Create the POST request String post = "class="+afilnet_class+"&method="+afilnet_method+"&type="+afilnet_type+"&destination="+afilnet_destination+"&time="+afilnet_time+"&timetype="+afilnet_timetype+"&length="+afilnet_length+"&otpformat="+afilnet_otpformat+"&output="+afilnet_output; // We generate the URL URL myurl = new URL("https://www.afilnet.com/api/basic/"); // We create the connection HttpURLConnection con = (HttpURLConnection) myurl.openConnection(); String encoded = Base64.getEncoder().encodeToString((afilnet_user+":"+afilnet_password).getBytes(StandardCharsets.UTF_8)); con.setRequestProperty("Authorization", "Basic "+encoded); con.setDoOutput(true); con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); con.setRequestProperty("Content-Length", String.valueOf(post.length())); con.setRequestMethod("POST"); // We build the OutputStream os = con.getOutputStream(); os.write(post.getBytes()); os.close(); StringBuilder sb = new StringBuilder(); int HttpResult = con.getResponseCode(); if(HttpResult == HttpURLConnection.HTTP_OK) { BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(),"utf-8")); String line = null; while ((line = br.readLine()) != null) { sb.append(line + "\n"); } br.close(); System.out.println(""+sb.toString()); } else { System.out.println(con.getResponseCode()); System.out.println(con.getResponseMessage()); }String afilnet_class="otp"; String afilnet_method="verifyotp"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_destination="34600000000"; String afilnet_code="A73HF3I"; String afilnet_output=""; // Create an URL request String sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&destination="+afilnet_destination+"&code="+afilnet_code+"&output="+afilnet_output; URL url = new URL(sUrl); StringBuilder builder = new StringBuilder(); BufferedReader theJSONline = new BufferedReader(new InputStreamReader(url.openStream())); builder.append(theJSONline.readLine()); String content = builder.toString();
String afilnet_class="otp"; String afilnet_method="verifyotp"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_destination="34600000000"; String afilnet_code="A73HF3I"; String afilnet_output=""; // Create the POST request String post = "class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&destination="+afilnet_destination+"&code="+afilnet_code+"&output="+afilnet_output; // We generate the URL URL myurl = new URL("https://www.afilnet.com/api/http/"); // We create the connection HttpURLConnection con = (HttpURLConnection) myurl.openConnection(); con.setDoOutput(true); con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); con.setRequestProperty("Content-Length", String.valueOf(post.length())); con.setRequestMethod("POST"); // We build the OutputStream os = con.getOutputStream(); os.write(post.getBytes()); os.close(); StringBuilder sb = new StringBuilder(); int HttpResult = con.getResponseCode(); if(HttpResult == HttpURLConnection.HTTP_OK) { BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(),"utf-8")); String line = null; while ((line = br.readLine()) != null) { sb.append(line + "\n"); } br.close(); System.out.println(""+sb.toString()); } else { System.out.println(con.getResponseCode()); System.out.println(con.getResponseMessage()); }
String afilnet_class="otp"; String afilnet_method="verifyotp"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_destination="34600000000"; String afilnet_code="A73HF3I"; String afilnet_output=""; // Create the POST request String post = "class="+afilnet_class+"&method="+afilnet_method+"&destination="+afilnet_destination+"&code="+afilnet_code+"&output="+afilnet_output; // We generate the URL URL myurl = new URL("https://www.afilnet.com/api/basic/"); // We create the connection HttpURLConnection con = (HttpURLConnection) myurl.openConnection(); String encoded = Base64.getEncoder().encodeToString((afilnet_user+":"+afilnet_password).getBytes(StandardCharsets.UTF_8)); con.setRequestProperty("Authorization", "Basic "+encoded); con.setDoOutput(true); con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); con.setRequestProperty("Content-Length", String.valueOf(post.length())); con.setRequestMethod("POST"); // We build the OutputStream os = con.getOutputStream(); os.write(post.getBytes()); os.close(); StringBuilder sb = new StringBuilder(); int HttpResult = con.getResponseCode(); if(HttpResult == HttpURLConnection.HTTP_OK) { BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream(),"utf-8")); String line = null; while ((line = br.readLine()) != null) { sb.append(line + "\n"); } br.close(); System.out.println(""+sb.toString()); } else { System.out.println(con.getResponseCode()); System.out.println(con.getResponseMessage()); }
Opdag fordelene og ulemperne ved hver af vores API'er. Find ud af, hvilken API der er bedst til din software på Java.
Denne API giver dig mulighed for at oprette forbindelse til os fra Java for at sende anmodninger via HTTP GET-anmodninger. Denne anmodning sender parametrene i samme URL som anmodningen.
POST request API giver dig mulighed for at oprette forbindelse til vores API fra Java ved at sende anmodningsparametre via HTTP POST-parametre. Oplysningerne sendes uafhængigt af URL'en.
Den grundlæggende autentificerings-API tillader brugen af GET- og POST-anmodninger på Java med et ekstra sikkerhedslag, da brugernavnet og adgangskoden i dette tilfælde sendes i overskriften på anmodningen.
SOAP giver dig mulighed for at sende anmodninger i XML-format med Java, SOAP tilføjer et ekstra lag af sikkerhed til API-anmodninger.
Vores JSON API giver dig mulighed for at sende anmodninger i JSON-format med Java, derudover tilføjer denne API oAuth 2.0-protokollen i godkendelsen, der giver dig mulighed for at tilføje et ekstra lag af sikkerhed.
For at få adgang til API'en skal du være en Afilnet-klient. Registrering vil tage et par minutter.
Vores firma vil tilbyde dig en prøvebalance, der giver dig mulighed for at teste med den API, du har brug for.
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
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.
Tilmeld dig gratis, og prøv Afilnet! Vi tilbyder dig en gratis prøveperiode på vores tjenester. *
Selskab *
Navn *
E-mail *
Telefonnummer *
(*) 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