Php Slideshare API 500对上传幻灯片的响应(www.Slideshare.net/API/2/upload\u slideshow)

Php Slideshare API 500对上传幻灯片的响应(www.Slideshare.net/API/2/upload\u slideshow),php,api,integration,linkedin,slideshow,Php,Api,Integration,Linkedin,Slideshow,从昨天开始,使用PHP上传幻灯片的SlideShareAPI就不起作用了。 我们只收到500条回复(请参见下文) 我们访问了端点: 功能禁用搜索(事件){ var t=document.getElementById('searchstring'); 如果(t.value=='在此处键入文本…'| | t.value.length==0){ event.preventDefault(); } } 500错误。无法加载该页。 500 很抱歉无法加载该页。 这可能是暂时的错误。只需刷新页面,然后重试

从昨天开始,使用PHP上传幻灯片的SlideShareAPI就不起作用了。 我们只收到500条回复(请参见下文)

我们访问了端点:


功能禁用搜索(事件){
var t=document.getElementById('searchstring');
如果(t.value=='在此处键入文本…'| | t.value.length==0){
event.preventDefault();
}
}
500错误。无法加载该页。

500

很抱歉无法加载该页。 这可能是暂时的错误。只需刷新页面,然后重试。如果问题仍然存在,请在5-10分钟后再次检查。

您也可以在下面查看我们的或搜索。 搜寻
奇怪的是,这样一个API会用HTML文档来回答,而不仅仅是通常使用的任何数据格式的错误代码。但是无论如何,如果您的代码以前工作过,而现在突然出现此错误,那么您可能应该首先与提供此API的人员联系。您好,CBroe,此代码在2天前停止工作。直到那里对我有用。我收到Linkedin人员的指示,在这里添加这种情况(错误),用Linkedin标记我的问题。我希望工程师们能看到并修复它!你好你找到答案了吗?看起来他们在没有任何警告的情况下从文档中删除了此API调用的描述。不幸的是,在所有渠道(stackoverflow、google group、linkedin支持)都忽略了@SergeyZherevchuk,这太奇怪了。“直到现在才有答案。”SergeyZherevchuk为谷歌幻灯片或其他类似服务提供学习更改服务。这是我和所有其他使用幻灯片的人都无法接受的情况。收购前,幻灯片效果良好。
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <link href="/stylesheets/error.css" type="text/css" rel="stylesheet" media="screen" />

    <script type="text/javascript">
      function disableSearch(event) {
        var t = document.getElementById('searchstring');
        if(t.value === 'Type text here …' || t.value.length === 0) {
          event.preventDefault();
        }
      }
    </script>
    <title>500 error. The page could not be loaded.</title>

  </head>

  <body>
    <div class="smiley"><img src="/images/errorsmiley.png" width="128px" height="128px" alt="error" /></div>
    <div class="errorBox">
      <p class="errorCode">500</p>
      <h1>Sorry! The page could not be loaded.</h1>
      <h2> 
      This is probably a temporary error. Just refresh the page and retry. If problem continues, please check back in 5-10 minutes.
        <br/><br/>You could also check out our <a href="/">homepage</a> or search below.</h2>
        <div class="searchSection">
          <form style="display: inline;" action="/search/slideshow" method="get">
          <input type="text" id="searchstring" name="q" value="Type text here &hellip;" class="errorSearchBox" onclick="this.value = '';">
          <button type="submit" onclick="disableSearch(event)">
            Search<span>&nbsp;</span></button>
          </form>
        </div>
    </div>
  </body>
  </html>