thebatfink

Sony TV YAML (w/ selects)

Mar 1st, 2026 (edited)
50
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.51 KB | None | 0 0
  1. _vars:
  2. sonyauth: '8394'
  3. sonysystem: 'http://192.168.1.71/sony/system'
  4. sonyavcontent: 'http://192.168.1.71/sony/avContent'
  5. sonyaudio: 'http://192.168.1.71/sony/audio'
  6. sonyapp: 'http://192.168.1.71/sony/appControl'
  7. sonysimpleip: '192.168.1.71:20060'
  8.  
  9. SonyTV:
  10. Features:
  11. 'Off':
  12. Type: post
  13. Parameter:
  14. url: ${sonysystem}
  15. headers:
  16. Content-Type: application/json
  17. X-Auth-PSK: ${sonyauth}
  18. json:
  19. method: 'setPowerStatus'
  20. id: 55
  21. params:
  22. - status: False
  23. version: '1.0'
  24. 'On':
  25. Type: post
  26. Parameter:
  27. url: ${sonysystem}
  28. headers:
  29. Content-Type: application/json
  30. X-Auth-PSK: ${sonyauth}
  31. json:
  32. method: 'setPowerStatus'
  33. id: 55
  34. params:
  35. - status: True
  36. version: '1.0'
  37. Toggle:
  38. Type: post
  39. Parameter:
  40. url: ${sonysystem}
  41. headers:
  42. Content-Type: application/json
  43. X-Auth-PSK: ${sonyauth}
  44. json:
  45. method: 'setPowerStatus'
  46. id: 55
  47. params:
  48. - status: False
  49. version: '1.0'
  50. Simple Commands:
  51. HDMI_INPUT_1:
  52. Type: post
  53. Parameter:
  54. url: ${sonyavcontent}
  55. headers:
  56. Content-Type: application/json
  57. X-Auth-PSK: ${sonyauth}
  58. json:
  59. method: 'setPlayContent'
  60. id: 101
  61. params:
  62. - uri: 'extInput:hdmi?port=1'
  63. version: '1.0'
  64. HDMI_INPUT_2:
  65. Type: post
  66. Parameter:
  67. url: ${sonyavcontent}
  68. headers:
  69. Content-Type: application/json
  70. X-Auth-PSK: ${sonyauth}
  71. json:
  72. method: 'setPlayContent'
  73. id: 101
  74. params:
  75. - uri: 'extInput:hdmi?port=2'
  76. version: '1.0'
  77. HDMI_INPUT_3:
  78. Type: post
  79. Parameter:
  80. url: ${sonyavcontent}
  81. headers:
  82. Content-Type: application/json
  83. X-Auth-PSK: ${sonyauth}
  84. json:
  85. method: 'setPlayContent'
  86. id: 101
  87. params:
  88. - uri: 'extInput:hdmi?port=3'
  89. version: '1.0'
  90. HDMI_INPUT_4:
  91. Type: post
  92. Parameter:
  93. url: ${sonyavcontent}
  94. headers:
  95. Content-Type: application/json
  96. X-Auth-PSK: ${sonyauth}
  97. json:
  98. method: 'setPlayContent'
  99. id: 101
  100. params:
  101. - uri: 'extInput:hdmi?port=4'
  102. version: '1.0'
  103. COMP_INPUT_1:
  104. Type: post
  105. Parameter:
  106. url: ${sonyavcontent}
  107. headers:
  108. Content-Type: application/json
  109. X-Auth-PSK: ${sonyauth}
  110. json:
  111. method: 'setPlayContent'
  112. id: 101
  113. params:
  114. - uri: 'extInput:composite?port=1'
  115. version: '1.0'
  116. SCREEN_MIRROR:
  117. Type: post
  118. Parameter:
  119. url: ${sonyavcontent}
  120. headers:
  121. Content-Type: application/json
  122. X-Auth-PSK: ${sonyauth}
  123. json:
  124. method: 'setPlayContent'
  125. id: 101
  126. params:
  127. - uri: 'extInput:widi?port=1'
  128. version: '1.0'
  129. VOLUME_UP:
  130. Type: post
  131. Parameter:
  132. url: ${sonyaudio}
  133. headers:
  134. Content-Type: application/json
  135. X-Auth-PSK: ${sonyauth}
  136. json:
  137. method: 'setAudioVolume'
  138. id: 98
  139. params:
  140. - target: ""
  141. volume: "+1"
  142. ui: "on"
  143. version: '1.2'
  144. VOLUME_DOWN:
  145. Type: post
  146. Parameter:
  147. url: ${sonyaudio}
  148. headers:
  149. Content-Type: application/json
  150. X-Auth-PSK: ${sonyauth}
  151. json:
  152. method: 'setAudioVolume'
  153. id: 98
  154. params:
  155. - target: ""
  156. volume: "-1"
  157. ui: "on"
  158. version: '1.2'
  159. VOLUME_UP_SPEAKER:
  160. Type: post
  161. Parameter:
  162. url: ${sonyaudio}
  163. headers:
  164. Content-Type: application/json
  165. X-Auth-PSK: ${sonyauth}
  166. json:
  167. method: 'setAudioVolume'
  168. id: 98
  169. params:
  170. - target: "speaker"
  171. volume: "+1"
  172. ui: "on"
  173. version: '1.2'
  174. VOLUME_DOWN_SPEAKER:
  175. Type: post
  176. Parameter:
  177. url: ${sonyaudio}
  178. headers:
  179. Content-Type: application/json
  180. X-Auth-PSK: ${sonyauth}
  181. json:
  182. method: 'setAudioVolume'
  183. id: 98
  184. params:
  185. - target: "speaker"
  186. volume: "-1"
  187. ui: "on"
  188. version: '1.2'
  189. MUTE:
  190. Type: post
  191. Parameter:
  192. url: ${sonyaudio}
  193. headers:
  194. Content-Type: application/json
  195. X-Auth-PSK: ${sonyauth}
  196. json:
  197. method: 'setAudioMute'
  198. id: 601
  199. params:
  200. - status: True
  201. version: '1.0'
  202. UNMUTE:
  203. Type: post
  204. Parameter:
  205. url: ${sonyaudio}
  206. headers:
  207. Content-Type: application/json
  208. X-Auth-PSK: ${sonyauth}
  209. json:
  210. method: 'setAudioMute'
  211. id: 601
  212. params:
  213. - status: False
  214. version: '1.0'
  215. DISPLAY:
  216. Type: tcp-text
  217. Parameter:
  218. address: ${sonysimpleip}
  219. text: '*SCIRCC0000000000000005\n'
  220. HOME:
  221. Type: tcp-text
  222. Parameter:
  223. address: ${sonysimpleip}
  224. text: '*SCIRCC0000000000000006\n'
  225. OPTIONS:
  226. Type: tcp-text
  227. Parameter:
  228. address: ${sonysimpleip}
  229. text: '*SCIRCC0000000000000007\n'
  230. RETURN:
  231. Type: tcp-text
  232. Parameter:
  233. address: ${sonysimpleip}
  234. text: '*SCIRCC0000000000000008\n'
  235. UP:
  236. Type: tcp-text
  237. Parameter:
  238. address: ${sonysimpleip}
  239. text: '*SCIRCC0000000000000009\n'
  240. DOWN:
  241. Type: tcp-text
  242. Parameter:
  243. address: ${sonysimpleip}
  244. text: '*SCIRCC0000000000000010\n'
  245. RIGHT:
  246. Type: tcp-text
  247. Parameter:
  248. address: ${sonysimpleip}
  249. text: '*SCIRCC0000000000000011\n'
  250. LEFT:
  251. Type: tcp-text
  252. Parameter:
  253. address: ${sonysimpleip}
  254. text: '*SCIRCC0000000000000012\n'
  255. CONFIRM:
  256. Type: tcp-text
  257. Parameter:
  258. address: ${sonysimpleip}
  259. text: '*SCIRCC0000000000000013\n'
  260. RED:
  261. Type: tcp-text
  262. Parameter:
  263. address: ${sonysimpleip}
  264. text: '*SCIRCC0000000000000014\n'
  265. GREEN:
  266. Type: tcp-text
  267. Parameter:
  268. address: ${sonysimpleip}
  269. text: '*SCIRCC0000000000000015\n'
  270. YELLOW:
  271. Type: tcp-text
  272. Parameter:
  273. address: ${sonysimpleip}
  274. text: '*SCIRCC0000000000000016\n'
  275. BLUE:
  276. Type: tcp-text
  277. Parameter:
  278. address: ${sonysimpleip}
  279. text: '*SCIRCC0000000000000017\n'
  280. NUM1:
  281. Type: tcp-text
  282. Parameter:
  283. address: ${sonysimpleip}
  284. text: '*SCIRCC0000000000000018\n'
  285. NUM2:
  286. Type: tcp-text
  287. Parameter:
  288. address: ${sonysimpleip}
  289. text: '*SCIRCC0000000000000019\n'
  290. NUM3:
  291. Type: tcp-text
  292. Parameter:
  293. address: ${sonysimpleip}
  294. text: '*SCIRCC0000000000000020\n'
  295. NUM4:
  296. Type: tcp-text
  297. Parameter:
  298. address: ${sonysimpleip}
  299. text: '*SCIRCC0000000000000021\n'
  300. NUM5:
  301. Type: tcp-text
  302. Parameter:
  303. address: ${sonysimpleip}
  304. text: '*SCIRCC0000000000000022\n'
  305. NUM6:
  306. Type: tcp-text
  307. Parameter:
  308. address: ${sonysimpleip}
  309. text: '*SCIRCC0000000000000023\n'
  310. NUM7:
  311. Type: tcp-text
  312. Parameter:
  313. address: ${sonysimpleip}
  314. text: '*SCIRCC0000000000000024\n'
  315. NUM8:
  316. Type: tcp-text
  317. Parameter:
  318. address: ${sonysimpleip}
  319. text: '*SCIRCC0000000000000025\n'
  320. NUM9:
  321. Type: tcp-text
  322. Parameter:
  323. address: ${sonysimpleip}
  324. text: '*SCIRCC0000000000000026\n'
  325. NUM0:
  326. Type: tcp-text
  327. Parameter:
  328. address: ${sonysimpleip}
  329. text: '*SCIRCC0000000000000027\n'
  330. VOLUMEUP:
  331. Type: tcp-text
  332. Parameter:
  333. address: ${sonysimpleip}
  334. text: '*SCIRCC0000000000000030\n'
  335. VOLUMEDOWN:
  336. Type: tcp-text
  337. Parameter:
  338. address: ${sonysimpleip}
  339. text: '*SCIRCC0000000000000031\n'
  340. VOLUMEMUTE:
  341. Type: tcp-text
  342. Parameter:
  343. address: ${sonysimpleip}
  344. text: '*SCIRCC0000000000000032\n'
  345. CHANNEL_UP:
  346. Type: tcp-text
  347. Parameter:
  348. address: ${sonysimpleip}
  349. text: '*SCIRCC0000000000000033\n'
  350. CHANNEL_DOWN:
  351. Type: tcp-text
  352. Parameter:
  353. address: ${sonysimpleip}
  354. text: '*SCIRCC0000000000000034\n'
  355. SUBTITLE:
  356. Type: tcp-text
  357. Parameter:
  358. address: ${sonysimpleip}
  359. text: '*SCIRCC0000000000000035\n'
  360. DOT:
  361. Type: tcp-text
  362. Parameter:
  363. address: ${sonysimpleip}
  364. text: '*SCIRCC0000000000000038\n'
  365. PICTURE_OFF:
  366. Type: tcp-text
  367. Parameter:
  368. address: ${sonysimpleip}
  369. text: '*SCIRCC0000000000000050\n'
  370. WIDE:
  371. Type: tcp-text
  372. Parameter:
  373. address: ${sonysimpleip}
  374. text: '*SCIRCC0000000000000061\n'
  375. JUMP:
  376. Type: tcp-text
  377. Parameter:
  378. address: ${sonysimpleip}
  379. text: '*SCIRCC0000000000000062\n'
  380. SYNC_MENU:
  381. Type: tcp-text
  382. Parameter:
  383. address: ${sonysimpleip}
  384. text: '*SCIRCC0000000000000076\n'
  385. FORWARD:
  386. Type: tcp-text
  387. Parameter:
  388. address: ${sonysimpleip}
  389. text: '*SCIRCC0000000000000077\n'
  390. PLAY:
  391. Type: tcp-text
  392. Parameter:
  393. address: ${sonysimpleip}
  394. text: '*SCIRCC0000000000000078\n'
  395. REWIND:
  396. Type: tcp-text
  397. Parameter:
  398. address: ${sonysimpleip}
  399. text: '*SCIRCC0000000000000079\n'
  400. PREV:
  401. Type: tcp-text
  402. Parameter:
  403. address: ${sonysimpleip}
  404. text: '*SCIRCC0000000000000080\n'
  405. STOP:
  406. Type: tcp-text
  407. Parameter:
  408. address: ${sonysimpleip}
  409. text: '*SCIRCC0000000000000081\n'
  410. NEXT:
  411. Type: tcp-text
  412. Parameter:
  413. address: ${sonysimpleip}
  414. text: '*SCIRCC0000000000000082\n'
  415. PAUSE:
  416. Type: tcp-text
  417. Parameter:
  418. address: ${sonysimpleip}
  419. text: '*SCIRCC0000000000000084\n'
  420. FLASH_PLUS:
  421. Type: tcp-text
  422. Parameter:
  423. address: ${sonysimpleip}
  424. text: '*SCIRCC0000000000000086\n'
  425. FLASH_MINUS:
  426. Type: tcp-text
  427. Parameter:
  428. address: ${sonysimpleip}
  429. text: '*SCIRCC0000000000000087\n'
  430. TV_POWER:
  431. Type: tcp-text
  432. Parameter:
  433. address: ${sonysimpleip}
  434. text: '*SCIRCC0000000000000098\n'
  435. AUDIO:
  436. Type: tcp-text
  437. Parameter:
  438. address: ${sonysimpleip}
  439. text: '*SCIRCC0000000000000099\n'
  440. INPUT:
  441. Type: tcp-text
  442. Parameter:
  443. address: ${sonysimpleip}
  444. text: '*SCIRCC0000000000000101\n'
  445. SLEEP:
  446. Type: tcp-text
  447. Parameter:
  448. address: ${sonysimpleip}
  449. text: '*SCIRCC0000000000000104\n'
  450. SLEEP_TIMER:
  451. Type: tcp-text
  452. Parameter:
  453. address: ${sonysimpleip}
  454. text: '*SCIRCC0000000000000105\n'
  455. VIDEO_2:
  456. Type: tcp-text
  457. Parameter:
  458. address: ${sonysimpleip}
  459. text: '*SCIRCC0000000000000108\n'
  460. PICTURE_MODE:
  461. Type: tcp-text
  462. Parameter:
  463. address: ${sonysimpleip}
  464. text: '*SCIRCC0000000000000110\n'
  465. DEMO_SURROUND:
  466. Type: tcp-text
  467. Parameter:
  468. address: ${sonysimpleip}
  469. text: '*SCIRCC0000000000000121\n'
  470. HDMI_1:
  471. Type: tcp-text
  472. Parameter:
  473. address: ${sonysimpleip}
  474. text: '*SCIRCC0000000000000124\n'
  475. HDMI_2:
  476. Type: tcp-text
  477. Parameter:
  478. address: ${sonysimpleip}
  479. text: '*SCIRCC0000000000000125\n'
  480. HDMI_3:
  481. Type: tcp-text
  482. Parameter:
  483. address: ${sonysimpleip}
  484. text: '*SCIRCC0000000000000126\n'
  485. HDMI_4:
  486. Type: tcp-text
  487. Parameter:
  488. address: ${sonysimpleip}
  489. text: '*SCIRCC0000000000000127\n'
  490. ACTION_MENU:
  491. Type: tcp-text
  492. Parameter:
  493. address: ${sonysimpleip}
  494. text: '*SCIRCC0000000000000129\n'
  495. HELP:
  496. Type: tcp-text
  497. Parameter:
  498. address: ${sonysimpleip}
  499. text: '*SCIRCC0000000000000130\n'
  500. LED_OFF:
  501. Type: post
  502. Parameter:
  503. url: ${sonysystem}
  504. headers:
  505. Content-Type: application/json
  506. X-Auth-PSK: ${sonyauth}
  507. json:
  508. method: 'setLEDIndicatorStatus'
  509. id: 53
  510. params:
  511. - mode: 'Off'
  512. status: 'false'
  513. version: '1.1'
  514. LED_ON_AUTO:
  515. Type: post
  516. Parameter:
  517. url: ${sonysystem}
  518. headers:
  519. Content-Type: application/json
  520. X-Auth-PSK: ${sonyauth}
  521. json:
  522. method: 'setLEDIndicatorStatus'
  523. id: 53
  524. params:
  525. - mode: 'AutoBrightnessAdjust'
  526. status: 'true'
  527. version: '1.1'
  528. LED_ON_DEMO:
  529. Type: post
  530. Parameter:
  531. url: ${sonysystem}
  532. headers:
  533. Content-Type: application/json
  534. X-Auth-PSK: ${sonyauth}
  535. json:
  536. method: 'setLEDIndicatorStatus'
  537. id: 53
  538. params:
  539. - mode: 'Demo'
  540. status: 'true'
  541. version: '1.1'
  542. LED_ON_DARK:
  543. Type: post
  544. Parameter:
  545. url: ${sonysystem}
  546. headers:
  547. Content-Type: application/json
  548. X-Auth-PSK: ${sonyauth}
  549. json:
  550. method: 'setLEDIndicatorStatus'
  551. id: 53
  552. params:
  553. - mode: 'Dark'
  554. status: 'true'
  555. version: '1.1'
  556. LED_ON_SIMPLE:
  557. Type: post
  558. Parameter:
  559. url: ${sonysystem}
  560. headers:
  561. Content-Type: application/json
  562. X-Auth-PSK: ${sonyauth}
  563. json:
  564. method: 'setLEDIndicatorStatus'
  565. id: 53
  566. params:
  567. - mode: 'SimpleResponse'
  568. status: 'true'
  569. version: '1.1'
  570. APP_BBCIPLAYER:
  571. Type: post
  572. Parameter:
  573. url: ${sonyapp}
  574. headers:
  575. Content-Type: application/json
  576. X-Auth-PSK: ${sonyauth}
  577. json:
  578. method: 'setActiveApp'
  579. id: 601
  580. params:
  581. - uri: 'com.sony.dtv.sonyselect-iPlayer'
  582. version: '1.0'
  583. APP_ITVX:
  584. Type: post
  585. Parameter:
  586. url: ${sonyapp}
  587. headers:
  588. Content-Type: application/json
  589. X-Auth-PSK: ${sonyauth}
  590. json:
  591. method: 'setActiveApp'
  592. id: 601
  593. params:
  594. - uri: 'com.sony.dtv.sonyselect-com.sony.dtv.youview.itv'
  595. version: '1.0'
  596. APP_ITVX2:
  597. Type: post
  598. Parameter:
  599. url: ${sonyapp}
  600. headers:
  601. Content-Type: application/json
  602. X-Auth-PSK: ${sonyauth}
  603. json:
  604. method: 'setActiveApp'
  605. id: 601
  606. params:
  607. - uri: 'com.sony.dtv.com.sony.dtv.itvlauncher.com.sony.dtv.itvlauncher.MainActivity'
  608. version: '1.0'
  609. APP_CHANNEL4:
  610. Type: post
  611. Parameter:
  612. url: ${sonyapp}
  613. headers:
  614. Content-Type: application/json
  615. X-Auth-PSK: ${sonyauth}
  616. json:
  617. method: 'setActiveApp'
  618. id: 601
  619. params:
  620. - uri: 'com.sony.dtv.sonyselect-com.sony.dtv.youview.channel4'
  621. version: '1.0'
  622. APP_CHANNEL4_ALT:
  623. Type: post
  624. Parameter:
  625. url: ${sonyapp}
  626. headers:
  627. Content-Type: application/json
  628. X-Auth-PSK: ${sonyauth}
  629. json:
  630. method: 'setActiveApp'
  631. id: 601
  632. params:
  633. - uri: 'com.sony.dtv.com.sony.dtv.all4launcher.com.sony.dtv.all4launcher.MainActivity'
  634. version: '1.0'
  635. APP_5:
  636. Type: post
  637. Parameter:
  638. url: ${sonyapp}
  639. headers:
  640. Content-Type: application/json
  641. X-Auth-PSK: ${sonyauth}
  642. json:
  643. method: 'setActiveApp'
  644. id: 601
  645. params:
  646. - uri: 'com.sony.dtv.sonyselect-channel5.youview'
  647. version: '1.0'
  648. APP_5_ALT:
  649. Type: post
  650. Parameter:
  651. url: ${sonyapp}
  652. headers:
  653. Content-Type: application/json
  654. X-Auth-PSK: ${sonyauth}
  655. json:
  656. method: 'setActiveApp'
  657. id: 601
  658. params:
  659. - uri: 'com.sony.dtv.com.sony.dtv.my5launcher.com.sony.dtv.my5launcher.MainActivity'
  660. version: '1.0'
  661. APP_YOUVIEW:
  662. Type: post
  663. Parameter:
  664. url: ${sonyapp}
  665. headers:
  666. Content-Type: application/json
  667. X-Auth-PSK: ${sonyauth}
  668. json:
  669. method: 'setActiveApp'
  670. id: 601
  671. params:
  672. - uri: 'com.sony.dtv.sonyselect-com.sony.dtv.youview'
  673. version: '1.0'
  674. APP_BBCSOUNDS:
  675. Type: post
  676. Parameter:
  677. url: ${sonyapp}
  678. headers:
  679. Content-Type: application/json
  680. X-Auth-PSK: ${sonyauth}
  681. json:
  682. method: 'setActiveApp'
  683. id: 601
  684. params:
  685. - uri: 'com.sony.dtv.sonyselect-bbs_sounds'
  686. version: '1.0'
  687. APP_RAKUTENTV:
  688. Type: post
  689. Parameter:
  690. url: ${sonyapp}
  691. headers:
  692. Content-Type: application/json
  693. X-Auth-PSK: ${sonyauth}
  694. json:
  695. method: 'setActiveApp'
  696. id: 601
  697. params:
  698. - uri: 'com.sony.dtv.sonyselect-ES-WUAKI_NBIV'
  699. version: '1.0'
  700. APP_TVGUIDE:
  701. Type: post
  702. Parameter:
  703. url: ${sonyapp}
  704. headers:
  705. Content-Type: application/json
  706. X-Auth-PSK: ${sonyauth}
  707. json:
  708. method: 'setActiveApp'
  709. id: 601
  710. params:
  711. - uri: 'com.sony.dtv.com.sony.dtv.tvxlauncher.programguide.com.sony.dtv.tvxlauncher.programguide.MainActivity'
  712. version: '1.0'
  713. APP_TV:
  714. Type: post
  715. Parameter:
  716. url: ${sonyapp}
  717. headers:
  718. Content-Type: application/json
  719. X-Auth-PSK: ${sonyauth}
  720. json:
  721. method: 'setActiveApp'
  722. id: 601
  723. params:
  724. - uri: 'com.sony.dtv.com.sony.dtv.tvx.com.sony.dtv.tvx.MainActivity'
  725. version: '1.0'
  726. APP_RECORDEDLIST:
  727. Type: post
  728. Parameter:
  729. url: ${sonyapp}
  730. headers:
  731. Content-Type: application/json
  732. X-Auth-PSK: ${sonyauth}
  733. json:
  734. method: 'setActiveApp'
  735. id: 601
  736. params:
  737. - uri: 'com.sony.dtv.com.sony.dtv.tvxlauncher.titlelist.com.sony.dtv.tvxlauncher.titlelist.MainActivity'
  738. version: '1.0'
  739. APP_DISNEY:
  740. Type: post
  741. Parameter:
  742. url: ${sonyapp}
  743. headers:
  744. Content-Type: application/json
  745. X-Auth-PSK: ${sonyauth}
  746. json:
  747. method: 'setActiveApp'
  748. id: 601
  749. params:
  750. - uri: 'com.sony.dtv.com.disney.disneyplus.com.bamtechmedia.dominguez.main.MainActivity'
  751. version: '1.0'
  752. APP_APPLETV:
  753. Type: post
  754. Parameter:
  755. url: ${sonyapp}
  756. headers:
  757. Content-Type: application/json
  758. X-Auth-PSK: ${sonyauth}
  759. json:
  760. method: 'setActiveApp'
  761. id: 601
  762. params:
  763. - uri: 'com.sony.dtv.com.apple.atve.androidtv.appletv.com.apple.atve.androidtv.appletv.MainActivity'
  764. version: '1.0'
  765. APP_NETFLIX:
  766. Type: post
  767. Parameter:
  768. url: ${sonyapp}
  769. headers:
  770. Content-Type: application/json
  771. X-Auth-PSK: ${sonyauth}
  772. json:
  773. method: 'setActiveApp'
  774. id: 601
  775. params:
  776. - uri: 'com.sony.dtv.com.netflix.ninja.com.netflix.ninja.MainActivity'
  777. version: '1.0'
  778. APP_SONYSELECT:
  779. Type: post
  780. Parameter:
  781. url: ${sonyapp}
  782. headers:
  783. Content-Type: application/json
  784. X-Auth-PSK: ${sonyauth}
  785. json:
  786. method: 'setActiveApp'
  787. id: 601
  788. params:
  789. - uri: 'com.sony.dtv.com.sony.dtv.sonyselect.com.sony.dtv.sonyselect.activities.LaunchActivity'
  790. version: '1.0'
  791. APP_TIMERS:
  792. Type: post
  793. Parameter:
  794. url: ${sonyapp}
  795. headers:
  796. Content-Type: application/json
  797. X-Auth-PSK: ${sonyauth}
  798. json:
  799. method: 'setActiveApp'
  800. id: 601
  801. params:
  802. - uri: 'com.sony.dtv.com.sony.dtv.timers.com.sony.dtv.activity.TimersMainActivity'
  803. version: '1.0'
  804. APP_INTERNETBROWSE:
  805. Type: post
  806. Parameter:
  807. url: ${sonyapp}
  808. headers:
  809. Content-Type: application/json
  810. X-Auth-PSK: ${sonyauth}
  811. json:
  812. method: 'setActiveApp'
  813. id: 601
  814. params:
  815. - uri: 'com.sony.dtv.com.vewd.core.integration.dia.com.vewd.core.integration.dia.SonyBrowserUiActivity'
  816. version: '1.0'
  817. APP_PLAYGAMES:
  818. Type: post
  819. Parameter:
  820. url: ${sonyapp}
  821. headers:
  822. Content-Type: application/json
  823. X-Auth-PSK: ${sonyauth}
  824. json:
  825. method: 'setActiveApp'
  826. id: 601
  827. params:
  828. - uri: 'com.sony.dtv.com.google.android.play.games.com.google.android.apps.play.games.app.atv.features.home.HomeActivity'
  829. version: '1.0'
  830. APP_PLAYMOVIES:
  831. Type: post
  832. Parameter:
  833. url: ${sonyapp}
  834. headers:
  835. Content-Type: application/json
  836. X-Auth-PSK: ${sonyauth}
  837. json:
  838. method: 'setActiveApp'
  839. id: 601
  840. params:
  841. - uri: 'com.sony.dtv.com.google.android.videos.com.google.android.videos.tv.presenter.activity.TvLauncherActivity'
  842. version: '1.0'
  843. APP_PLAYMUSIC:
  844. Type: post
  845. Parameter:
  846. url: ${sonyapp}
  847. headers:
  848. Content-Type: application/json
  849. X-Auth-PSK: ${sonyauth}
  850. json:
  851. method: 'setActiveApp'
  852. id: 601
  853. params:
  854. - uri: 'com.sony.dtv.com.google.android.music.com.google.android.music.tv.HomeActivity'
  855. version: '1.0'
  856. APP_MYBRAVIA:
  857. Type: post
  858. Parameter:
  859. url: ${sonyapp}
  860. headers:
  861. Content-Type: application/json
  862. X-Auth-PSK: ${sonyauth}
  863. json:
  864. method: 'setActiveApp'
  865. id: 601
  866. params:
  867. - uri: 'com.sony.dtv.com.sony.dtv.promos.com.sony.dtv.promos.MainActivity'
  868. version: '1.0'
  869. APP_PRIMEVIDEO:
  870. Type: post
  871. Parameter:
  872. url: ${sonyapp}
  873. headers:
  874. Content-Type: application/json
  875. X-Auth-PSK: ${sonyauth}
  876. json:
  877. method: 'setActiveApp'
  878. id: 601
  879. params:
  880. - uri: 'com.sony.dtv.com.amazon.amazonvideo.livingroom.com.amazon.ignition.IgnitionActivity'
  881. version: '1.0'
  882. APP_PLAYSTORE:
  883. Type: post
  884. Parameter:
  885. url: ${sonyapp}
  886. headers:
  887. Content-Type: application/json
  888. X-Auth-PSK: ${sonyauth}
  889. json:
  890. method: 'setActiveApp'
  891. id: 601
  892. params:
  893. - uri: 'com.sony.dtv.com.android.vending.com.google.android.finsky.tvmainactivity.TvMainActivity'
  894. version: '1.0'
  895. APP_MUSIC:
  896. Type: post
  897. Parameter:
  898. url: ${sonyapp}
  899. headers:
  900. Content-Type: application/json
  901. X-Auth-PSK: ${sonyauth}
  902. json:
  903. method: 'setActiveApp'
  904. id: 601
  905. params:
  906. - uri: 'com.sony.dtv.com.sony.dtv.osat.music.com.sonyericsson.music.MusicActivity'
  907. version: '1.0'
  908. APP_YOUTUBE:
  909. Type: post
  910. Parameter:
  911. url: ${sonyapp}
  912. headers:
  913. Content-Type: application/json
  914. X-Auth-PSK: ${sonyauth}
  915. json:
  916. method: 'setActiveApp'
  917. id: 601
  918. params:
  919. - uri: 'com.sony.dtv.com.google.android.youtube.tv.com.google.android.apps.youtube.tv.activity.ShellActivity'
  920. version: '1.0'
  921. APP_YOUTUBEMUSIC:
  922. Type: post
  923. Parameter:
  924. url: ${sonyapp}
  925. headers:
  926. Content-Type: application/json
  927. X-Auth-PSK: ${sonyauth}
  928. json:
  929. method: 'setActiveApp'
  930. id: 601
  931. params:
  932. - uri: 'com.sony.dtv.com.google.android.youtube.tvmusic.com.google.android.apps.youtube.tvmusic.activity.MainActivity'
  933. version: '1.0'
  934. APP_HELP:
  935. Type: post
  936. Parameter:
  937. url: ${sonyapp}
  938. headers:
  939. Content-Type: application/json
  940. X-Auth-PSK: ${sonyauth}
  941. json:
  942. method: 'setActiveApp'
  943. id: 601
  944. params:
  945. - uri: 'com.sony.dtv.com.sony.dtv.smarthelp.com.sony.dtv.smarthelp.activity.MainActivity'
  946. version: '1.0'
  947. WOL_ON:
  948. Type: post
  949. Parameter:
  950. url: ${sonysystem}
  951. headers:
  952. Content-Type: application/json
  953. X-Auth-PSK: ${sonyauth}
  954. json:
  955. method: 'setWolMode'
  956. id: 55
  957. params:
  958. - enabled: True
  959. version: '1.0'
  960. WOL_OFF:
  961. Type: post
  962. Parameter:
  963. url: ${sonysystem}
  964. headers:
  965. Content-Type: application/json
  966. X-Auth-PSK: ${sonyauth}
  967. json:
  968. method: 'setWolMode'
  969. id: 55
  970. params:
  971. - enabled: False
  972. version: '1.0'
  973. AUDIO_SPEAKER:
  974. Type: post
  975. Parameter:
  976. url: ${sonyaudio}
  977. headers:
  978. Content-Type: application/json
  979. X-Auth-PSK: ${sonyauth}
  980. json:
  981. method: 'setSoundSettings'
  982. id: 5
  983. params:
  984. - value: 'speaker'
  985. target: 'outputTerminal'
  986. version: '1.1'
  987. AUDIO_SPEAKER_HDMI:
  988. Type: post
  989. Parameter:
  990. url: ${sonyaudio}
  991. headers:
  992. Content-Type: application/json
  993. X-Auth-PSK: ${sonyauth}
  994. json:
  995. method: 'setSoundSettings'
  996. id: 5
  997. params:
  998. - value: 'speaker_hdmi'
  999. target: 'outputTerminal'
  1000. version: '1.1'
  1001. AUDIO_HDMI:
  1002. Type: post
  1003. Parameter:
  1004. url: ${sonyaudio}
  1005. headers:
  1006. Content-Type: application/json
  1007. X-Auth-PSK: ${sonyauth}
  1008. json:
  1009. method: 'setSoundSettings'
  1010. id: 5
  1011. params:
  1012. - value: 'hdmi'
  1013. target: 'outputTerminal'
  1014. version: '1.1'
  1015. AUDIO_AUDIOSYSTEM:
  1016. Type: post
  1017. Parameter:
  1018. url: ${sonyaudio}
  1019. headers:
  1020. Content-Type: application/json
  1021. X-Auth-PSK: ${sonyauth}
  1022. json:
  1023. method: 'setSoundSettings'
  1024. id: 5
  1025. params:
  1026. - value: 'audioSystem'
  1027. target: 'outputTerminal'
  1028. version: '1.1'
  1029. Selects:
  1030. INPUTS:
  1031. - HDMI_INPUT_1
  1032. - HDMI_INPUT_2
  1033. - HDMI_INPUT_3
  1034. - HDMI_INPUT_4
  1035. - COMP_INPUT_1
  1036. - SCREEN_MIRROR
  1037. - VIDEO_2
  1038. LED MODE:
  1039. - LED_OFF
  1040. - LED_ON_AUTO
  1041. - LED_ON_DARK
  1042. - LED_ON_SIMPLE
  1043. - LED_ON_DEMO
  1044.  
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment