fbeen / laposta-api-php
Laposta api, free api to laposta.nl
Requires
- php: >=5.2
This package is not auto-updated.
Last update: 2024-11-13 20:01:09 UTC
README
Installation¶ ↑
To get started, add the following to your PHP script:
require_once(“/path/to/laposta-php/lib/Laposta.php”);
Simple usage looks like:
Laposta::setApiKey(“JdMtbsMq2jqJdQZD9AHC”);
$member = new Laposta_Member(“BaImMu3JZA”);
$result = $member->get(“maartje@example.net”);
HTTP(S)
Default is HTTPS. If you can’t use HTTPS, do this:
Laposta::setHttps(false);
If you’re getting errors about certificate problems, you do this:
Laposta::setHttpsDisableVerifyPeer(true);
Note: this gets rid of the errors, but can introduce security issues that SSL is designed to protect against. A better solution is to install the CA’s certs: stackoverflow.com/questions/6400300
Documentation¶ ↑
Please see api.laposta.nl/doc/ for up-to-date documentation.