Hello Jonathon, I am trying to access the sandbox by using the .net library Dfareporting v2.2.
I could not find any documentation about it, so I decompiled the library itself looking for some clues.
By looking at the code I've noticed that there are a couple of readonly properties:
/// <summary>
/// Gets the service base URI.
/// </summary>
public override string BaseUri
{
get
{
return "https://www.googleapis.com/dfareporting/v2.2/";
}
}
/// <summary>
/// Gets the service base path.
/// </summary>
public override string BasePath
{
get
{
return "dfareporting/v2.2/";
}
}
One way to access the sandbox could be to extend the DfareportingService class in order to override these properties...but that's a very ugly solution: isn't it any better and tidier way to achieve the same ?
Thank you for your help,
Giulio D'Ambrosio (The Exchange Lab)