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
| // Array exemplo da operação SALE | |
| $sale = array( | |
| "verification" => array( | |
| "merchantId" => "100", | |
| "merchantKey" => "NotAValidKey21g8u6gh6szw1", | |
| ), | |
| "order" => array( | |
| "sale" => array( | |
| "referenceNum" => "123456789", | |
| "ipAddress" => "123.123.123.123", |
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
| <a href="skype:echo123?call">Call the Skype Echo / Sound Test Service</a> |
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
| <script type="text/javascript" src="http://cdn.dev.skype.com/uri/skype-uri.js"></script> |
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
| <div id="genSkypeCall"> | |
| /* ここにSkype URI を埋め込む */ | |
| </div> |
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
| <script type="text/javascript"> | |
| Skype.ui({ | |
| name: "call", | |
| element: "genSkypeCall", // ここで div タグの id を指定 | |
| participants: ["echo123"], // 通話に参加するユーザの指定 | |
| listparticipants: "true" | |
| }); | |
| </script> |
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
| <script type="text/javascript" src="http://cdn.dev.skype.com/uri/skype-uri.js"></script> | |
| <div id="genSkypeCall"> | |
| <script type="text/javascript"> | |
| Skype.ui({ | |
| name: "call", | |
| element: "genSkypeCall", // ここで div タグの id を指定 | |
| participants: ["echo123"], // 通話に参加するユーザの指定 | |
| listparticipants: "true" | |
| }); | |
| </script> |
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
| <script type="text/javascript" src="http://cdn.dev.skype.com/uri/skype-uri.js"></script> | |
| <div id="skypeUriParams"> | |
| <script type="text/javascript"> | |
| Skype.ui({ | |
| name: "dropdown", | |
| element: "skypeUriParams", | |
| participants: ["echo123"], | |
| listparticipants: "true", | |
| video: "true", | |
| topic: "Test Call", |
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
| onDeviceReady: function() { | |
| app.receivedEvent('deviceready'); | |
| navigator.notification.alert("The device is ready!"); | |
| } |
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
| var audio = new Audio('hoge.wav'); | |
| audio.play(); |
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
| hoge.addEventListener('touchstart', function(){ | |
| var audio = new Audio ('foo.wav'); | |
| audio.play(); | |
| }); |
OlderNewer