Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Qt Academy Launch in California!

    Need help youtube APIs with qt

    Mobile and Embedded
    3
    7
    4851
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D
      doforumda last edited by

      hi

      i need some links where i can learn how to use youtube APIs with qt.i google it but i could not find any useful links. Please help
      thanks

      1 Reply Last reply Reply Quote 0
      • X
        xizzhu last edited by

        Basically, you need to send some HTTP request using e.g. QNetworkAccessManager, then parse the received data.

        For example, if you send a HTTP GET request like this:
        @http://gdata.youtube.com/feeds/api/videos?q=football+-soccer&orderby=published&start-index=11&max-results=10&v=2@

        You can get a ATOM-formatted reply, containing the query result, from which you can parse e.g. the URL of the content and thumbnail, etc., then you can send another request to get the data.

        My Blog: http://xzis.me/

        1 Reply Last reply Reply Quote 0
        • D
          doforumda last edited by

          thanks but any link would be help full

          1 Reply Last reply Reply Quote 0
          • X
            xizzhu last edited by

            YouTube API: http://code.google.com/apis/youtube/2.0/developers_guide_protocol_audience.html

            My Blog: http://xzis.me/

            1 Reply Last reply Reply Quote 0
            • D
              doforumda last edited by

              well i have used youtube api in past with PHP. i know how to do this in PHP. but i need to how can i access youtube stuff using QT. I mean i need some examples. if there are any links for this then provide it here i ll really appreciate that.

              1 Reply Last reply Reply Quote 0
              • I
                Irfan last edited by

                doforumda: Were you able to do it with Qt?? please sher if you got any success

                1 Reply Last reply Reply Quote 0
                • X
                  xizzhu last edited by

                  doforumda, here goes some basic samples to send some request:
                  @class MyObject : public QObject
                  {
                  Q_OBJECT
                  public:
                  explicit MyObject(QObject *parent = 0);

                  private slots:
                  void processReply();
                  };

                  MyObject::MyObject(QObject *parent) :
                  QObject(parent)
                  {
                  QNetworkAccessManager *nam = new QNetworkAccessManager(this);

                  QNetworkRequest request;
                  request.setUrl(QUrl("http://gdata.youtube.com/feeds/api/videos?q=football&orderby=published&max-results=1&v=2"));
                  
                  QNetworkReply *reply = nam->get(request);
                  connect(reply, SIGNAL(finished()), SLOT(processReply()));
                  

                  }

                  void MyObject::processReply()
                  {
                  QNetworkReply *reply = static_cast<QNetworkReply *>(sender());

                  if (reply->error() != QNetworkReply::NoError) {
                      qDebug() << "Error found: " << reply->error();
                      return;
                  }
                  
                  QByteArray content = reply->readAll();
                  qDebug() << content;
                  
                  // Here, you can use, e.g. QXmlStreamReader, to parse the received content
                  
                  reply->deleteLater();
                  

                  }@

                  My Blog: http://xzis.me/

                  1 Reply Last reply Reply Quote 0
                  • First post
                    Last post