Can someone post an example of some code which sets the header for how to utilize the filters I can't make sense of what the docs are asking me to do.
Setting it as an http header doesn't seem to work.
Mind you I'm using PHP for my testing and here's the code:
$url = "https://cumulus.services.live.com/" . $ownerhandle . "/LiveContacts";
$header = array("Authorization: DomainAuthToken at=\"" . $authtoken . "\"",
"com.microsoft.external.contacts.Filter=MessengerClient");
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);