php fopen:身份验证错误:访问被拒绝,验证协议错误

时间:2015-05-22 16:30:41

标签: php authentication fopen mjpeg

我喜欢用php读取一个mjpeg流,将一个jpg-image从流中删除。该流将从我的网络摄像头创建。网络摄像头受密码保护。

这是我的代码:

class stos
{
    class info;
    ^^^^^^^^^^ Declare it here

... rest of class

public:
    info pop();

private:
    class info
    {
        int x;
        bool isGood;
        friend info stos::pop(); 
                    ^^^^ Added surrounding class for overload resolution
    }; //Define it here
};

结果是:

  

访问错误:401 - 未经授权

     

身份验证错误:访问被拒绝,验证协议错误。

如果我在浏览器ie或firefox中复制网址,则会加载流而不会出现任何错误。所以用户名和密码是正确的。

也许有些人有个主意。

也许还有一个可以使用的代码来从PHP中的mjpg流中获取第一个jpg?

由于

0 个答案:

没有答案