We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys,
If you guys are planning on to add a ruby example code, here it is:
headers = { Authorization: 'Key test_secret_key_f59e8b7d18b4499ca40f68195a846e9b' } uri = URI.parse('https://khalti.com/api/payment/verify/') https = Net::HTTP.new(uri.host, uri.port) https.use_ssl = true request = Net::HTTP::Post.new(uri.request_uri, headers) request.set_form_data('token' => params[:token], 'amount' => params[:amount]) response = https.request(request)
The text was updated successfully, but these errors were encountered:
3db13a3
poudel
No branches or pull requests
Hi guys,
If you guys are planning on to add a ruby example code, here it is:
The text was updated successfully, but these errors were encountered: