Successfully publishing to speech.
This commit is contained in:
parent
c88e927794
commit
54639a7f55
3 changed files with 13 additions and 6 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -8,3 +8,6 @@
|
|||
tmp/*
|
||||
|
||||
!*.gitkeep
|
||||
|
||||
#Ignore config file
|
||||
lbry_config.php
|
||||
|
|
|
@ -56,14 +56,14 @@ class LBRY_Speech
|
|||
error_log(print_r($attachment, true));
|
||||
// TODO: set post meta to see if already uploaded
|
||||
|
||||
$file_url = $attachment->guid;
|
||||
$file_url = str_replace(site_url(), '', $file_url);
|
||||
$cfile = curl_file_create($file_url, $attachment->post_mime_type, $attachment->post_name);
|
||||
$file_url = get_attached_file($attachment->ID);
|
||||
$cfile = new CURLFile($file_url, $attachment->post_mime_type, $attachment->post_name . '.jpg');
|
||||
|
||||
$params = array(
|
||||
'name' => $attachment->post_name,
|
||||
'file' => $cfile,
|
||||
'title' => $attachment->post_title
|
||||
'title' => $attachment->post_title,
|
||||
'type' => $attachment->post_mime_type
|
||||
);
|
||||
|
||||
$result = $this->request('publish', $params);
|
||||
|
@ -97,8 +97,8 @@ class LBRY_Speech
|
|||
|
||||
/**
|
||||
* Sends a cURL request to the Speech URL
|
||||
* @param string $method The method to call on the LBRY API
|
||||
* @param array $params The Parameters to send the LBRY API Call
|
||||
* @param string $method The method to call on the Speech API
|
||||
* @param array $params The Parameters to send the Speech API Call
|
||||
* @return string The cURL response
|
||||
*/
|
||||
private function request($method, $params = array())
|
||||
|
|
4
lbry_config.example.php
Normal file
4
lbry_config.example.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
// Define Speech Channel and password
|
||||
// define(LBRY_SPEECH_CHANNEL, '');
|
||||
// define(LBRY_SPEECH_CHANNEL_PASSWORD, '');
|
Loading…
Reference in a new issue