We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to create a blank network for testing purposes does anybody have any experiences doing this with this library?
The text was updated successfully, but these errors were encountered:
You should be able to simply call makeTestNetwork on the NetworkService.
makeTestNetwork
NetworkService
var Dfp = require("node-google-dfp") dfpUser = new Dfp.User("", "Test", "v201708"); dfpUser.setSettings({ client_id : "", client_secret : "", refresh_token : "" }); dfpUser.getService('NetworkService', function (err, networkService) { if (err) { return console.error(err); } networkService.makeTestNetwork((err, res) => console.log(err, res)); });
Fill in the networkId, client_id, client_secret and refresh_token and you should be golden.
networkId
client_id
client_secret
refresh_token
Sorry, something went wrong.
No branches or pull requests
I want to create a blank network for testing purposes does anybody have any experiences doing this with this library?
The text was updated successfully, but these errors were encountered: