Last active
August 29, 2015 14:02
-
-
Save masahide/1eb64262c38f0ca957fa to your computer and use it in GitHub Desktop.
Cybozu ガルーン API を使ってみる ref: http://qiita.com/yamasaki-masahide/items/fff1c84e65043ac4caf7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Garoon on cybozu.com: https://(サブドメイン名).cybozu.com/g/index.csp?WSDL | |
| パッケージ版 Windows 環境:http://(インストールしたサーバーの IP アドレスまたはホスト名)/scripts/(インストール識別子)/grn.exe?WSDL | |
| パッケージ版 Linux 環境:http://(インストールしたサーバーの IP アドレスまたはホスト名)/cgi-bin/(インストール識別子)/grn.cgi?WSDL | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://ホスト名/インストールパス/grn.cgi/cbpapi/schedule/api? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope" | |
| xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" | |
| xmlns:base_services="http://wsdl.cybozu.co.jp/base/2008"> | |
| <SOAP-ENV:Header> | |
| <Action SOAP-ENV:mustUnderstand="1" | |
| xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing"> | |
| ScheduleGetEvents | |
| </Action> | |
| <Security xmlns:wsu="http://schemas.xmlsoap.org/ws/2002/07/utility" | |
| SOAP-ENV:mustUnderstand="1" | |
| xmlns="http://schemas.xmlsoap.org/ws/2002/12/secext"> | |
| <UsernameToken wsu:Id="id"> | |
| <Username>xxxxxxxxxx</Username> | |
| <Password>xxxxxxxxxx</Password> | |
| </UsernameToken> | |
| </Security> | |
| <Timestamp SOAP-ENV:mustUnderstand="1" Id="id" | |
| xmlns="http://schemas.xmlsoap.org/ws/2002/07/utility"> | |
| <Created>2037-08-12T14:45:00Z</Created> | |
| <Expires>2037-08-12T14:45:00Z</Expires> | |
| </Timestamp> | |
| <Locale>jp</Locale> | |
| </SOAP-ENV:Header> | |
| <SOAP-ENV:Body> | |
| <ScheduleGetEvents> | |
| <parameters start="2014-01-01T08:00:00" end="2014-01-30T20:00:00" > | |
| </parameters> | |
| </ScheduleGetEvents> | |
| </SOAP-ENV:Body> | |
| </SOAP-ENV:Envelope> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <soap:Envelope> | |
| <soap:Header> | |
| <vendor>Cybozu</vendor> | |
| <product>Garoon</product> | |
| <product_type>1</product_type> | |
| <version>3.7.2</version> | |
| <apiversion>1.3.0</apiversion> | |
| </soap:Header> | |
| <soap:Body> | |
| <schedule:ScheduleGetEventsResponse> | |
| <returns> | |
| <schedule_event id="3451422" event_type="repeat" public_type="public" plan="打合せ" ・・・・ | |
| ・ | |
| ・ | |
| ・ | |
| ・ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment