This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once __DIR__ . '/vendor/autoload.php'; | |
use bunq\Context\ApiContext; | |
use bunq\Http\ApiClient; | |
use bunq\Model\Generated\Endpoint\MasterCardAction; | |
use bunq\Model\Generated\Endpoint\NoteAttachmentMasterCardAction; | |
use bunq\Util\BunqEnumApiEnvironmentType; | |
use bunq\Context\BunqContext; | |
use bunq\Model\Generated\Endpoint\MonetaryAccountBank; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import warnings | |
from bunq.sdk.context.api_context import ApiContext, ApiEnvironmentType | |
from bunq.sdk.context.bunq_context import BunqContext | |
from bunq.sdk.model.generated.endpoint import BunqMeTab, BunqMeTabEntry | |
from bunq.sdk.model.generated.object_ import Amount | |
warnings.filterwarnings("ignore") | |
_API_KEY = '<YOUR_BUNQ_API_KEY>' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let https = require("https"); | |
let jsdom = require("jsdom"); | |
// Get page | |
https.get("https://coronadashboard.rijksoverheid.nl", (res) => { | |
let htmlData; | |
res.on("data", (chunk) => { | |
htmlData += chunk; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use bunq\Context\ApiContext; | |
use bunq\Context\BunqContext; | |
use bunq\Model\Generated\Endpoint\Insight; | |
use bunq\Util\BunqEnumApiEnvironmentType; | |
require_once(__DIR__ . '/vendor/autoload.php'); | |
$environmentType = BunqEnumApiEnvironmentType::PRODUCTION(); | |
$apiKey = 'YOUR_ARI_KEY'; // Replace with your APIk-key |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use bunq\Context\ApiContext; | |
use bunq\Context\BunqContext; | |
use bunq\Model\Generated\Endpoint\User; | |
use bunq\Model\Generated\Endpoint\UserPerson; | |
use bunq\Model\Generated\Endpoint\NotificationFilterUrlMonetaryAccount; | |
use bunq\Model\Generated\Object\NotificationFilterUrl; | |
use bunq\Model\Core\NotificationFilterUrlMonetaryAccountInternal; | |
use bunq\Util\BunqEnumApiEnvironmentType; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Get refresh_token for Lidl Plus API | |
* | |
* By: Bastiaan Steinmeier, https://github.com/basst85 | |
* | |
*/ | |
const { Issuer, generators } = require('openid-client'); | |
const puppeteer = require('puppeteer'); | |
const devices = require('puppeteer/DeviceDescriptors'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use bunq\Context\ApiContext; | |
use bunq\Context\BunqContext; | |
use bunq\Model\Core\BunqEnumOauthResponseType; | |
use bunq\Model\Core\OauthAuthorizationUri; | |
use bunq\Model\Generated\Endpoint\OauthCallbackUrl; | |
use bunq\Model\Generated\Endpoint\OauthClient; | |
use bunq\Util\BunqEnumApiEnvironmentType; | |
use bunq\Util\FileUtil; | |
use bunq\Util\SecurityUtil; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import warnings | |
from bunq.sdk import context | |
from bunq.sdk.json import converter | |
from bunq.sdk.client import Pagination | |
from bunq.sdk.context import ApiContext | |
from bunq.sdk.context import ApiEnvironmentType | |
from bunq.sdk.context import BunqContext | |
from bunq.sdk.model.generated import endpoint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.5" | |
services: | |
pihole: | |
image: pihole/pihole:latest | |
container_name: pihole | |
hostname: pihole | |
networks: | |
dockernet: | |
ipv4_address: 172.19.0.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import warnings | |
from bunq.sdk import context | |
from bunq.sdk.json import converter | |
from bunq.sdk.client import Pagination | |
from bunq.sdk.context import ApiContext | |
from bunq.sdk.context import ApiEnvironmentType | |
from bunq.sdk.context import BunqContext | |
from bunq.sdk.model.generated import endpoint |
NewerOlder