Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Want to allow your customers to pay in the most convenient way, then Twikey is right what you need.
Recurring or occasional payments via (Recurring) Credit Card, SEPA Direct Debit or any other payment method by bringing your own payment service provider or by leveraging your bank contract.
Twikey offers a simple and safe multichannel solution to negotiate and collect recurring (or even occasional) payments. Twikey has integrations with a lot of accounting and CRM packages. It is the first and only provider to operate on a European level for Direct Debit and can work directly with all major Belgian and Dutch Banks. However you can use the payment options of your favorite PSP to allow other customers to pay as well.
To use the Twikey API client, the following things are required:
The easiest way to install the Twikey API client is with pip.
$ pip install twikey-api-python
The api works the same way regardless if you want to create a mandate, a transaction, an invoice or even a paylink. the following steps should be implemented:
Use the Twikey API client to create or import your item.
Once available, our platform will send an asynchronous request to the configured webhook to allow the details to be retrieved. As there may be multiple items ready for you a "feed" endpoint is provided which acts like a queue that can be read until empty till the next time.
The customer returns, and should be satisfied to see that the action he took is completed.
Find our full documentation online on api.twikey.com.
Initializing the Twikey API client using the Requests library. and configure your API key which you can find in the Twikey merchant interface.
import twikey
APIKEY = 'apikey_as_found_in_twikey'
twikeyClient = twikey.TwikeyClient(APIKEY, "apiurl_as_found_in_twikey")
Invite a customer to sign a SEPA mandate using a specific behaviour template (ct) that allows you to configure the behaviour or flow that the customer will experience. This 'ct' can be found in the template section of the settings.
import twikey
ct = 123 # See settings/profile in twikey
invite = twikey.TwikeyClient.document.create({
"ct": ct,
"email": "info@twikey.com",
"firstname": "Info",
"lastname": "Twikey"
})
After creation, the link available in invite['url'] can be used to redirect the customer into the signing flow or even send him a link through any other mechanism. Ideally you store the mandatenumber for future usage (eg. sending transactions).
Once signed, a webhook is sent (see below) after which you can fetch the detail through the document feed, which you can actually think of as reading out a queue. Since it'll return you the changes since the last time you called it.
import twikey
class MyDocumentFeed(twikey.DocumentFeed):
def newDocument(self, doc, evt_time):
print("new ", doc["MndtId"])
def updatedDocument(self, original_mandate_number, doc, reason, evt_time):
print("update ", doc["MndtId"], "b/c", reason["Rsn"])
def cancelDocument(self, doc_number, reason, evt_time):
print("cancelled ", doc_number, "b/c", reason["Rsn"])
twikey.TwikeyClient.document.feed(MyDocumentFeed())
Send new transactions and act upon feedback from the bank.
import twikey
tx = twikey.TwikeyClient.transaction.create({
"mndtId" : "CORERECURRENTNL16318",
"message" : "Test Message",
"ref" : "Merchant Reference",
"amount" : 10.00,
"place" : "Here"
})
import twikey
class MyFeed(twikey.TransactionFeed):
def transaction(self, transaction):
print("TX ", transaction.ref, transaction.state)
twikey.TwikeyClient.transaction.feed(MyFeed())
When wants to inform you about new updates about documents or payments a webhookUrl
specified in your api settings be called.
import Flask
import urllib
import twikey
APIKEY = 'apikey_as_found_in_twikey'
app = Flask(__name__)
@app.route('/webhook', methods=['GET'])
def webhook(request):
payload = urllib.parse.unquote(request.query_string)
received_sign = request.headers.get('X-Signature')
if not received_sign:
return False
if twikey.Webhook.verify_signature(payload,received_sign,APIKEY):
# trigger feed fetching
return 'Successfully', 200
return 'Forbidden', 403
if __name__ == '__main__':
#setup dev server
app.debug = True
app.run(host = "0.0.0.0",port=8000)
If you wish to learn more about our API, please visit the Twikey Api Page. API Documentation is available in English.
Want to help us make our API client even better? We take pull requests.
Contact: www.twikey.com
FAQs
Python interface with the Twikey api
We found that twikey-api-python demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.