外部プログラムと通信するための Google Apps スクリプトがあります。プログラムは、認証するために認証を必要としています:
「これには POST メソッドを使用する必要があり、コンテンツ タイプは「application/x-www-form-urlencoded」に設定する必要があります。ユーザー名はパラメーター「UserName」で指定し、パスワードはパラメーターで指定する必要があります。 " Password ". したがって、投稿データは " UserName =xxx& Password =yyy"のようなものになります。リクエストごとにユーザー名とパスワードを送信しない場合、セッション (またはそれを保持するオブジェクト) を保持する必要があることに注意してください。生きている。"
これは機能しています:
var payload = "_UserName_="+username+"&_Password_="+password
var options = {
"method" : "POST",
"payload" : payload,
"contentType" : "application/x-www-form-urlencoded"
};
var xml = UrlFetchApp.fetch("https://start.application.nl/docs/XMLDivisions.aspx", options);
しかし、ここで次のリクエストを行いたいと思います。
var xml = UrlFetchApp.fetch("https://start.application.nl/docs/XMLDownload.aspx?PartnerKey="+partnerKey+"&Topic=Accounts");
しかし、認証されていませんか?
GAS セッションを維持するにはどうすればよいですか?
PHP を使用した実際の例:
<?php
$baseurl = "https://start.exactonline.nl";
$username = "<username>";
$password = "<password>";
$partnerkey = ""; /* If you have one, the partnerkey with or without curly braces */
$division = "<division code>"; /* Check the result of the first division retrieving for the division codes */
$cookiefile = "cookie.txt";
$crtbundlefile = "cacert.pem"; /* this can be downloaded from http://curl.haxx.se/docs/caextract.html */
/* Logging in */
$header[1] = "Cache-Control: private";
$header[2] = "Connection: Keep-Alive";
/* init, don't term until you're completely done with this session */
$ch = curl_init();
/* Set all options */
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookiefile);
curl_setopt($ch, CURLOPT_CAINFO, $crtbundlefile);
curl_setopt($ch, CURLOPT_POSTFIELDS, array("_UserName_"=>"$username", "_Password_"=>"$password"));
/* Retrieving divisions, the current should be the one in which the user worked the last time */
$url = "$baseurl/docs/XMLDivisions.aspx";
curl_setopt($ch, CURLOPT_URL, $url);
$result = curl_exec($ch);
/* Switching divisions */
$url = "$baseurl/docs/ClearSession.aspx?Division=$division&Remember=3";
curl_setopt($ch, CURLOPT_URL, $url);
$result = curl_exec($ch);
/* Retrieving divisions, the current should now be the one supplied in the switching divisions. This is only the current for this session! */
$url = "$baseurl/docs/XMLDivisions.aspx";
curl_setopt($ch, CURLOPT_URL, $url);
$result = curl_exec($ch);
/* Upload an xml file */
$topic = "Invoices";
$url = "$baseurl/docs/XMLUpload.aspx?Topic=$topic&PartnerKey=$partnerkey";
curl_setopt($ch, CURLOPT_URL, $url);
/* Send the xml along with the request */
$filename = "Invoices.xml";
$fp = fopen($filename, "r");
$xml = fread($fp, filesize($filename));
curl_setopt($ch, CURLOPT_POSTFIELDS, utf8_encode($xml));
$result = curl_exec($ch);
/* Finally close as we're finished with this session */
curl_close($ch);
echo $result;
?>