0

我想通过我的钛应用程序在 google+ 上发布图像和视频。这是我正在使用的网址:

var webView = Ti.UI.createWebView({
  url: 'https://plus.google.com/share?client_id=1234567889.apps.googleusercontent.com&continue='+Ti.App.id+'%3A%2F%2Fshare%2F&text='+textToShare+'&url='+urlToShare+'&bundle_id='+Ti.App.id+'&gpsdk=1.0.0' 
});

win.add(webView);

谁能告诉,如何在上面的 url 中将图像作为参数传递?

任何帮助,将不胜感激。

谢谢

4

2 回答 2

1

目前无法通过 URL、按钮或 SDK 共享图像。

实际上,对于共享 URL,您会在 Google+ 信息流的共享框中注意到,您不能同时进行链接预览和图像上传,这可能是为什么共享选项这样的基础因为你要找的人不提供这种能力。

于 2013-05-03T14:17:14.920 回答
0

您可以在 Google+ 上添加/上传图片:参考链接:https ://developers.google.com/+/domains/posts/creating

    // Helper function courtesy of https://github.com/guzzle/guzzle/blob/3a0787217e6c0246b457e637ddd33332efea1d2a/src/Guzzle/Http/Message/PostFile.php#L90 

    function getCurlValue($filename, $contentType, $postname) {
          // PHP 5.5 introduced a CurlFile object that deprecates the old @filename syntax
          // See: https://wiki.php.net/rfc/curl-file-upload

    if (function_exists('curl_file_create')) {
        return curl_file_create($filename, $contentType, $postname);
    }

    // Use the old style if using an older version of PHP
    $value = "@{$filename};filename=" . $postname;
    if ($contentType) {
        $value .= ';type=' . $contentType;
    }

    return $value; }   $filename = '/path/to/file.jpg'; $cfile = getCurlValue($filename,'image/jpeg','cattle-01.jpg');   //NOTE: The top level key in the array is important, as some apis will insist that it is 'file'. $data = array('file' => $cfile);   $ch = curl_init(); $options = array(CURLOPT_URL => 'http://your/server/api/upload',
             CURLOPT_RETURNTRANSFER => true,
             CURLINFO_HEADER_OUT => true, //Request header
             CURLOPT_HEADER => true, //Return header
             CURLOPT_SSL_VERIFYPEER => false, //Don't veryify server certificate
             CURLOPT_POST => true,
             CURLOPT_POSTFIELDS => $data
            );
于 2017-04-03T09:40:09.163 回答