To use this provider, add an entry to creds.json with TYPE set to PACKETFRAME
along with your Packetframe Token which can be extracted from the token cookie on packetframe.com
Example:
{% code title="creds.json" %}
{
"packetframe": {
"TYPE": "PACKETFRAME",
"token": "your-packetframe-token"
}
}{% endcode %}
This provider does not recognize any special metadata fields unique to Packetframe.
An example configuration:
{% code title="dnsconfig.js" %}
var REG_NONE = NewRegistrar("none");
var DSP_PACKETFRAME = NewDnsProvider("packetframe");
D("example.com", REG_NONE, DnsProvider(DSP_PACKETFRAME),
A("test", "1.2.3.4")
);{% endcode %}