<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[DirectPay Payment geteway to Laravel integrate krpu kenk inwad ? Need help]]></title><description><![CDATA[<p dir="auto">integration krnwa vidiya example ekk tiynwanm dendko</p>
]]></description><link>https://lankadevelopers.lk/topic/1073/directpay-payment-geteway-to-laravel-integrate-krpu-kenk-inwad-need-help</link><generator>RSS for Node</generator><lastBuildDate>Tue, 11 Aug 2026 11:48:42 GMT</lastBuildDate><atom:link href="https://lankadevelopers.lk/topic/1073.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 11 Jan 2024 09:37:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to DirectPay Payment geteway to Laravel integrate krpu kenk inwad ? Need help on Fri, 01 Mar 2024 08:19:47 GMT]]></title><description><![CDATA[<p dir="auto">ou brother hri giya Thank you..!</p>
]]></description><link>https://lankadevelopers.lk/post/5119</link><guid isPermaLink="true">https://lankadevelopers.lk/post/5119</guid><dc:creator><![CDATA[Kasun Anuradha]]></dc:creator><pubDate>Fri, 01 Mar 2024 08:19:47 GMT</pubDate></item><item><title><![CDATA[Reply to DirectPay Payment geteway to Laravel integrate krpu kenk inwad ? Need help on Fri, 01 Mar 2024 07:17:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/2066">@Kasun-Anuradha</a> hari giyada? danui dakke. :)</p>
]]></description><link>https://lankadevelopers.lk/post/5118</link><guid isPermaLink="true">https://lankadevelopers.lk/post/5118</guid><dc:creator><![CDATA[malinga91]]></dc:creator><pubDate>Fri, 01 Mar 2024 07:17:12 GMT</pubDate></item><item><title><![CDATA[Reply to DirectPay Payment geteway to Laravel integrate krpu kenk inwad ? Need help on Fri, 02 Feb 2024 03:46:03 GMT]]></title><description><![CDATA[<p dir="auto">$secret = "vs6568s7v2aklsdv687a3dn8a6q92z";    secret key ek ila gannda one eyalgen</p>
]]></description><link>https://lankadevelopers.lk/post/5113</link><guid isPermaLink="true">https://lankadevelopers.lk/post/5113</guid><dc:creator><![CDATA[Kasun Anuradha]]></dc:creator><pubDate>Fri, 02 Feb 2024 03:46:03 GMT</pubDate></item><item><title><![CDATA[Reply to DirectPay Payment geteway to Laravel integrate krpu kenk inwad ? Need help on Fri, 02 Feb 2024 03:44:57 GMT]]></title><description><![CDATA[<p dir="auto">3.2. Create payment session</p>
<p dir="auto">Gateway URL<br />
Sandbox = <a href="https://test-gateway.directpay.lk/api/v3/create-session" target="_blank" rel="noopener noreferrer nofollow ugc">https://test-gateway.directpay.lk/api/v3/create-session</a><br />
Live = <a href="https://gateway.directpay.lk/api/v3/create-session" target="_blank" rel="noopener noreferrer nofollow ugc">https://gateway.directpay.lk/api/v3/create-session</a></p>
<p dir="auto">3.2.2.<br />
Sample Request<br />
Note: Example code for each step is provided using PHP.<br />
$checkout_url =<br />
"<a href="https://test-gateway.directpay.lk/api/v3/create-session" target="_blank" rel="noopener noreferrer nofollow ugc">https://test-gateway.directpay.lk/api/v3/create-session</a>";<br />
$requestPayload = [<br />
"merchant_id" =&gt; "xxxxxx",<br />
"amount" =&gt; "140.00",<br />
"source" =&gt; "custom-plugin",<br />
"type" =&gt; "ONE_TIME",<br />
"order_id" =&gt; "CP123456789",<br />
"currency" =&gt; "LKR",<br />
"response_url" =&gt; "<a href="https://test.com/response-endpoint" target="_blank" rel="noopener noreferrer nofollow ugc">https://test.com/response-endpoint</a>",<br />
"return_url" =&gt; "<a href="https://test.com/return" target="_blank" rel="noopener noreferrer nofollow ugc">https://test.com/return</a>",<br />
"first_name" =&gt; "Sam",<br />
"last_name" =&gt; "Perera",<br />
"email" =&gt; "<a href="mailto:user@email.com" target="_blank" rel="noopener noreferrer nofollow ugc">user@email.com</a>",<br />
"phone" =&gt; "071xxxxxxx",<br />
"description" =&gt; "test-payment",<br />
"logo" =&gt; "",<br />
];<br />
$jsonEncodedPayload = json_encode($requestPayload);<br />
$base64EncodedPayload = base64_encode($jsonEncodedPayload);<br />
$secret = "vs6568s7v2aklsdv687a3dn8a6q92z";<br />
$generatedHash = hash_hmac('sha256', $base64EncodedPayload, $secret);<br />
$signature = "hmac " . $generatedHash;<br />
$ch = curl_init();<br />
curl_setopt_array($ch, array(<br />
CURLOPT_URL =&gt; $checkout_url,<br />
10CURLOPT_RETURNTRANSFER =&gt; true,<br />
CURLOPT_ENCODING =&gt; "",<br />
CURLOPT_MAXREDIRS =&gt; 10,<br />
CURLOPT_TIMEOUT =&gt; 30,<br />
CURLOPT_HTTP_VERSION =&gt; CURL_HTTP_VERSION_1_1,<br />
CURLOPT_CUSTOMREQUEST =&gt; "POST",<br />
CURLOPT_POSTFIELDS =&gt; $base64EncodedPayload,<br />
CURLOPT_HTTPHEADER =&gt; [<br />
"Content-Type: text/plain",<br />
"Authorization: $signature",<br />
],<br />
));<br />
$response = curl_exec($ch);<br />
curl_close($ch);</p>
<p dir="auto">Sample Response</p>
<p dir="auto">Success Response<br />
{<br />
"status": 200,<br />
"data": {<br />
"link": "<a href="https://test-gateway.directpay.lk/52e28db633eb3838" target="_blank" rel="noopener noreferrer nofollow ugc">https://test-gateway.directpay.lk/52e28db633eb3838</a>",<br />
"token": "52e28db633eb3838",<br />
"sms_status": null,<br />
"email_status": null<br />
}<br />
}</p>
<p dir="auto">Fail Response<br />
{<br />
"status": 400,<br />
"data": {<br />
"title": "Invalid Signature: ",<br />
"message": "Provided signature is invalid",<br />
"code": "invalidSignature"<br />
}<br />
}</p>
]]></description><link>https://lankadevelopers.lk/post/5112</link><guid isPermaLink="true">https://lankadevelopers.lk/post/5112</guid><dc:creator><![CDATA[Kasun Anuradha]]></dc:creator><pubDate>Fri, 02 Feb 2024 03:44:57 GMT</pubDate></item><item><title><![CDATA[Reply to DirectPay Payment geteway to Laravel integrate krpu kenk inwad ? Need help on Thu, 01 Feb 2024 09:11:49 GMT]]></title><description><![CDATA[<p dir="auto">Documentation ekak denawa neda eyala service eka offer karanakota?</p>
]]></description><link>https://lankadevelopers.lk/post/5111</link><guid isPermaLink="true">https://lankadevelopers.lk/post/5111</guid><dc:creator><![CDATA[malinga91]]></dc:creator><pubDate>Thu, 01 Feb 2024 09:11:49 GMT</pubDate></item></channel></rss>