શેર કરો

વેબહુક્સ એ અમારા પ્લેટફોર્મની સૌથી ઉપયોગી વિશેષતાઓમાંની એક છે. તે વિકાસકર્તાઓ અને સાઇટ માલિકોને ઉપકરણો અથવા WhatsApp સર્વરમાંથી ઇવેન્ટ્સ સાંભળવાની મંજૂરી આપે છે, જે સ્વયંસંચાલિત કાર્યો બનાવવા માટે ઉપયોગી છે. આ ફંક્શન ખાસ કરીને એસએમએસ, વોટ્સએપ ચેટ, યુએસએસડી રિસ્પોન્સ અને એન્ડ્રોઈડ નોટિફિકેશન્સ જેવી ઈવેન્ટ્સ પ્રાપ્ત કરવા માટે બનાવવામાં આવ્યું છે.

ખાતે પોસ્ટ કરવામાં આવ્યું: ફેબ્રુ. 10, 2023 - 1,795 વ્યુ

કેસો વાપરો

  • SMS અને WhatsApp માટે ઓટો રિપ્લાય બોટ બનાવો.
  • પ્રાપ્ત કરવા પર તમારા પોતાના ડેટાબેઝમાં સંદેશાઓ અને ચેટ્સ સાચવો.
  • પ્રાપ્ત કરવા પર તમારા પોતાના ડેટાબેઝમાં સૂચનાઓ સાચવો.
  • પ્રાપ્ત કરવા પર તમારા પોતાના ડેટાબેઝમાં યુએસએસડી પ્રતિસાદો સાચવો.
  • ઉલ્લેખિત ઇમેઇલ સરનામાંઓ પર પેલોડ મોકલો.
  • જ્યારે તમને Facebook તરફથી સૂચના મળે ત્યારે SMS/Chat મોકલો.
  • જ્યારે તમને કોઈ એપમાંથી સૂચના મળે ત્યારે કંઈક કરો.

તે કેવી રીતે કામ કરે છે

સિસ્ટમને બંને સ્રોતોમાંથી પ્રાપ્ત ઇવેન્ટ મળે છે, પછી વેબહૂક યુઆરએલને બોલાવવામાં આવશે અને પેલોડ ડેટા મોકલવામાં આવશે. જ્યારે તમારું વેબહૂક સર્વર તેને પ્રાપ્ત કરે છે, ત્યારે તમે જાતે પેલોડ સાથે કંઈપણ કરી શકો છો. કાર્યક્ષમ ડિલિવરી સુનિશ્ચિત કરવા માટે POST પદ્ધતિથી પેલોડ્સ મોકલવામાં આવે છે .


flow
 

પેલોડ માળખું

પેલોડ માળખું સીધું છે; તમારે ફક્ત પેલોડનો પ્રકાર તપાસવાની જરૂર છે અને પછી ડેટા બોડીની સામગ્રી પર પ્રક્રિયા કરો.

# sms
[
    "type" => "sms", // type of payload: received sms
    "data" => [
        "id" => 2, // unique id from the system
        "rid" => 10593, // unique id from the device
        "sim" => 1, // sim card slot
        "device" => "00000000-0000-0000-d57d-f30cb6a89289", // device unique id
        "phone" => "+639760713666", // sender phone number
        "message" => "Hello World!", // message
        "timestamp" => 1645684231 // receive timestamp
    ]
]
# whatsapp
[
    "type" => "whatsapp", // type of payload: received whatsapp chat
    "data" => [
        "id" => 2, // unique id from the system
        "wid" => "+639760713666", // whatsapp account phone number
        "phone" => "+639760666713", // sender phone number
        "message" => "Hello World!", // message
        "timestamp" => 1645684231 // receive timestamp
    ]
]
# ussd
[
    "type" => "ussd", // type of payload: received ussd response
    "data" => [
        "id" => 98, // unique id from the system
        "sim" => 1, // sim card slot
        "device" => "00000000-0000-0000-d57d-f30cb6a89289", // device unique id
        "code" => "*143#", // ussd code
        "response" => "Sorry! You are not allowed to use this service.", // ussd response
        "timestamp" => 1645684231 // receive timestamp
    ]
]
# notification
[
    "type" => "notification", // type of payload: received notification
    "data" => [
        "id" => 77, // unique id from the system
        "device" => "00000000-0000-0000-d57d-f30cb6a89289", // device unique id
        "package" => "com.facebook.katana", // application package name
        "title" => "Someone commented on your post!", // notification title
        "content" => "Someone commented on your post!", // notification content
        "timestamp" => 1645684231 // receive timestamp
    ]
]

કોડ ઉદાહરણ

 Webhooks)

    /**
     * Validate webhook secret
     */

    if(isset($request["secret"]) && $request["secret"] == $secret):
        // Valid webhook secret
        $payloadType = $request["type"];
        $payloadData = $request["data"];

        // do something with the payload
        print_r($payloadType);
        print_r($payloadData);
    else:
        // Invalid webhook secret
    endif;

APK ફાઈલ ડાઉનલોડ કરો

તમારા એન્ડ્રોઇડ ફોન પર એપીકે ફાઇલ ડાઉનલોડ કરો અને ઇન્સ્ટોલ કરો

github download App SmsNotif download App
વાયરસ માટે તપાસ કરી Apk ફાઇલ વિશે વધુ
image-1
image-2
Your Cart