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
| { | |
| "success": true, | |
| "message": "Successfully retrieved tags", | |
| "data": { | |
| "tags": [ | |
| { | |
| "label": "Accents", | |
| "videoCount": "1" | |
| }, | |
| { |
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
| { | |
| "success": true, | |
| "message": "Successfully retrieved tags", | |
| "data": { | |
| "tags": [ | |
| { | |
| "label": "Adobe", | |
| "videoCount": "2" | |
| }, | |
| { |
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
| { | |
| "success": true, | |
| "message": "Successfully retrieved tags", | |
| "data": { | |
| "tags": [ | |
| { | |
| "label": "Accents", | |
| "videoCount": "1" | |
| }, | |
| { |
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
| { | |
| "success": true, | |
| "message": "Successfully retrieved Videos", | |
| "data": { | |
| "videos": [ | |
| { | |
| "id": "8979", | |
| "vidurl": "https:\/\/www.youtube.com\/watch?v=QyAHAvx0M24", | |
| "provider": "YouTube", | |
| "name": "Ryan Reynolds' XXX Selfie - CONAN on TBS", |
This file has been truncated, but you can view the full file.
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
| { | |
| "success": true, | |
| "message": "Successfully retrieved Videos", | |
| "data": { | |
| "videos": [ | |
| { | |
| "id": "8979", | |
| "vidurl": "https:\/\/www.youtube.com\/watch?v=QyAHAvx0M24", | |
| "provider": "YouTube", | |
| "name": "Ryan Reynolds' XXX Selfie - CONAN on TBS", |
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
| # BEGIN WordPress | |
| # The directives (lines) between `BEGIN WordPress` and `END WordPress` are | |
| # dynamically generated, and should only be modified via WordPress filters. | |
| # Any changes to the directives between these markers will be overwritten. | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| #next two lines were added for JWT wordpress plugin - added by Paul Mar 13 2020 | |
| RewriteCond %{HTTP:Authorization} ^(.*) | |
| RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1] | |
| # |
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
| { | |
| "success": true, | |
| "message": "Successfully retrieved Subtitles", | |
| "data": { | |
| "video": { | |
| "id": "9169", | |
| "vidurl": "https:\/\/www.youtube.com\/watch?v=7bD9pBExomY", | |
| "vidid": "7bD9pBExomY", | |
| "provider": "YouTube", | |
| "name": "10 Questions with Natalie Portman (TIME) - interview", |
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
| public function getTextInspectorSession(){ | |
| $username = App()->params['textinspectorUserName']; | |
| $password = App()->params['textinspectorPassword']; | |
| $usernameAndPassword = urlencode("$username:$password"); | |
| $url ="https://$usernameAndPassword@textinspector.com/api/v2/createsession"; | |
| $result = FireHelper::executeCurlGet($url); | |
| $sessionId = $result['sessionid']; | |
| return $sessionId; | |
| } | |
| public function actionAnalyseText() |