In Microsoft BingAds what will be here $developerToken<developertokengoeshere>

132 views Asked by At

In Bing ads i know all my credentials like developer_token_id, account_id etc.

but how do i set in my php file like

$AuthenticationToken = $_SESSION['access_token'];

This 3 variables are not in session.

$DeveloperToken = "<dynamic value>";
$CustomerId = <dynamic value>;
$AccountId = <dynamic value>;

please help me.

1

There are 1 answers

0
Eric Urban On

This may depend on your dependencies or environment constraints. For example you could store the properties in session similar to access_token, or set in a config file. The Server Side OAuth Authentication in PHP sample sets the DeveloperToken inside ClientCredentials.php. I hope this helps!