Skip to content
Robin Brämer edited this page Jan 12, 2021 · 8 revisions

User Guide

Trawling through Javadoc isn't always the most effective way to learn how to make best use of a library. Here, you can find pleasant and readable explanations of the most powerful features of this Cloudflare - API/Library.

Contents

  • Creating cloudflare requests (I'm working on finishing writing it...)
  • Changing Thread-Pooling
  • Create a Zone
  • There is a lot more to see (I find the time to write a full wiki), please read through the well documented code-base for your best understanding.

Getting Started

First, create an entry-point to use this api.

String CF_EMAIL = "[email protected]";
String CF_API_KEY = "your_cloudflare_api_key";

CloudflareAccess cfAccess = new CloudflareAccess(CF_EMAIL, CF_API_KEY);

Where can I get my API-Key/Email? (My Profile)

Clone this wiki locally