Jump to content

LegitSpiderman

New Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by LegitSpiderman

  1. Haha, I don't have terms for them, but you could atleast understand the core topic is to make it post to a page not into a discord chat. Eh, i guess ill just learn php or get somebody to change it for me.
  2. It's for a offerwall website, which calculates the profit they made from completing offers, so it updates their points and it sends the payout message via a bot into that discord channel. All, I want is somebody to do the same thing. But make it send the message onto a web page via the same method. So, I'd need somebody to convert this into a website method.
  3. Hey people of php freaks recently, I've been having issues changing a discord webhook [curl] post request to a website [curl] post request. My knowledge in PHP is very limited so, I really would appreciate some help This is the function: function postToDiscord($message) { $data = array("content" => $message, "username" => "Payouts Bot"); $curl = curl_init("https://discordapp.com/api/webhooks/591662537293168650/eyme87xmCuKne4njucoDSqzojq78NaS9x7t4sgP9m-l5EmrvUeZegkM4wok-L-UdBDxo"); curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($data)); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); return curl_exec($curl); } Currently the discord bot transfers the message into a discord channel and, I do not want that. I want it to transfer it onto a website page. As, I said i'm not very keen on this so please help me.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.