Search This Site

Custom Search

Sunday, January 16, 2011

[bloggerDev] Re: Operation TimeOut on Test Server not on LocalHost

When I'm running on my localhost (http://localhost:xxxxx/blog.aspx) it
works perfectly. It even pulls in the youTube video on the blog's
first post. Once I go onto my test server, I'm getting this issue.

On Jan 16, 10:56 pm, Brett Morgan <brettmor...@google.com> wrote:
> Heya Laki,
>
> Before I dive into trying to understand what is broken in your code, can you
> please confirm that the following example code works in your environment?
>
> http://google-gdata.googlecode.com/svn/trunk/clients/cs/samples/blogg...
>
> That way I can confirm your libraries are installed correctly, and you are
> authenticating sanely et al.
>
> brett
>
>
>
>
>
>
>
>
>
> On Mon, Jan 17, 2011 at 2:49 PM, Laki <apoli...@stetson.edu> wrote:
> > Hi. I'm using ASP.NET and the Google Client to access a blog on a
> > website I'm developing. I can access the feed for the blog online
> > without any issues:http://flomotionblog.blogspot.com/feeds/posts/default
> > . Whenever I try to call it through our web server test.theflomo.com,
> > I get nothing but a session time out.
>
> > Here's the error I'm getting:
>
> > --------------------------------------------------------------------------- -----------------------------------------------------------------------
> > [WebException: The operation has timed out]
> >   System.Net.HttpWebRequest.GetRequestStream(TransportContext&
> > context) +1876129
> >   System.Net.HttpWebRequest.GetRequestStream() +13
>
> > Google.GData.Client.Utilities.QueryClientLoginToken(GDataCredentials
> > gc, String serviceName, String applicationName, Boolean fUseKeepAlive,
> > Uri clientLoginHandler) +564
>
> > Google.GData.Client.GDataGAuthRequest.QueryAuthToken(GDataCredentials
> > gc) +248
> >   Google.GData.Client.GDataGAuthRequest.EnsureCredentials() +41
> >   Google.GData.Client.GDataRequest.EnsureWebRequest() +1101
> >   Google.GData.Client.GDataGAuthRequest.EnsureWebRequest() +26
> >   Google.GData.Client.GDataRequest.Execute() +42
>
> > [GDataRequestException: Execution of request failed:
> >http://flomotionblog.blogspot.com/feeds/posts/default]
> >   Google.GData.Client.GDataRequest.Execute() +162
> >   Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
> > +402
> >   Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
> > +423
> >   Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
> > +423
> >   Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
> > +423
> >   Google.GData.Client.GDataGAuthRequest.Execute() +10
> >   Google.GData.Client.Service.Query(Uri queryUri, DateTime
> > ifModifiedSince, String etag, Int64& contentLength) +193
> >   Google.GData.Client.Service.Query(FeedQuery feedQuery) +202
> >   FloMoTest.blog.loadBlog() in blog.aspx.cs:52
> >   FloMoTest.blog.Page_Load(Object sender, EventArgs e) in
> > blog.aspx.cs:36
> >   System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp,
> > Object o, Object t, EventArgs e) +14
> >   System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object
> > sender, EventArgs e) +35
> >   System.Web.UI.Control.OnLoad(EventArgs e) +99
> >   System.Web.UI.Control.LoadRecursive() +50
> >   System.Web.UI.Page.ProcessRequestMain(Boolean
> > includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
> > +627
>
> > --------------------------------------------------------------------------- -----------------------------------------------------------------------
>
> > Here's my code behind:
>
> > --------------------------------------------------------------------------- -----------------------------------------------------------------------
> > using System;
> > using System.Collections;
> > using System.Collections.Generic;
> > using System.Configuration;
> > using System.Data;
> > using System.Linq;
> > using System.Web;
> > using System.Web.Security;
> > using System.Web.UI;
> > using System.Web.UI.HtmlControls;
> > using System.Web.UI.WebControls;
> > using System.Web.UI.WebControls.WebParts;
> > using System.Xml.Linq;
> > using Google.GData.Blogger;
> > using Google.GData.Client;
> > using Google.GData.Extensions;
>
> > namespace FloMoTest
> > {
> >        public partial class blog : System.Web.UI.Page
> >        {
> >                private struct BlogItem
> >                {
> >                        public string title { get; set; }
> >                        public string authors { get; set; }
> >                        public string dates { get; set; }
> >                        public string links { get; set; }
> >                        public string summary { get; set; }
> >                        public string fullText { get; set; }
> >                        public string reqURI { get; set; }
> >                }
>
> >                protected void Page_Load(object sender, EventArgs e)
> >                {
>
> >                        loadBlog();
> >                }
> >                protected void loadBlog()
> >                {
>
> >                        string userName = "XXXXXXXXXX";
> >                        string passWord = "XXXXXXXXXX";
>
> >                        FeedQuery feedQuery = new FeedQuery();
> >                        feedQuery.Uri = new Uri("
> >http://flomotionblog.blogspot.com/feeds/
> > posts/default");
>
> >                        Service googleService = new Service("blogger",
> > "theFloMo.com");
> >                        googleService.Credentials = new
> > GDataCredentials(userName,
> > passWord);
>
> >                        AtomFeed atomFeed = null;
>
> >                        atomFeed = googleService.Query(feedQuery);
>
> >                        AtomLink atomLink = new AtomLink();
>
> >                        List<BlogItem> BlogItems = new List<BlogItem>();
>
> >                        foreach (AtomEntry entry in atomFeed.Entries)
> >                        {
> >                                string itemSummary = "";
> >                                string itemTitle = entry.Title.Text;
> >                                string itemAuthors =
> > entry.Authors[0].Name.ToString();
> >                                string itemDates =
>
> > entry.Published.ToLongDateString().Remove((entry.Published.ToLongDateString ().Length
> > - 6), (6));
> >                                string itemLinks =
> > entry.Links[1].HRef.ToString();
> >                                string itemReqURI =
> > entry.Id.AbsoluteUri.Remove(0, 51);
>
> >                                if (entry.Content.Content.Length <= 550)
> >                                {
> >                                        itemSummary = entry.Content.Content;
> >                                }
> >                                else
> >                                {
> >                                        itemSummary =
> > (entry.Content.Content.Remove(550) + " ...");
> >                                }
> >                                string itemFullText = entry.Content.Content;
>
> >                                BlogItems.Add(new BlogItem()
> >                                {
> >                                        title = itemTitle,
> >                                        authors = itemAuthors,
> >                                        dates = itemDates,
> >                                        links = itemLinks,
> >                                        summary = itemSummary,
> >                                        fullText = itemFullText,
> >                                        reqURI = itemReqURI,
> >                                });
> >                        }
> >                        if (BlogItems.Count >= 5)
> >                        {
> >                                blogRPT.DataSource = BlogItems.Take(5);
> >                        }
> >                        else
> >                        {
> >                                blogRPT.DataSource = BlogItems;
> >                        }
> >                        blogRPT.DataBind();
>
> >                }
> >        }
> > }
>
> > --------------------------------------------------------------------------- -----------------------------------------------------------------------
>
> > Any help would be appreciated.
>
> > Thank you,
>
> > Laki Politis.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
>
> Brett Morgan
>
> Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Re: Operation TimeOut on Test Server not on LocalHost

I was getting a bunch of "...field name..." does not exist in this
context for that sample blogger code.

I ran the Google Data API SDK\libgoogle-data-mono-1.7.0.1, and that's
working perfectly. I think it's getting the same Operation TimeOut,
however.

This line works: [ this.FeedChooser.DisplayMember = "Title"; ] but,
nothing else.

On Jan 16, 10:56 pm, Brett Morgan <brettmor...@google.com> wrote:
> Heya Laki,
>
> Before I dive into trying to understand what is broken in your code, can you
> please confirm that the following example code works in your environment?
>
> http://google-gdata.googlecode.com/svn/trunk/clients/cs/samples/blogg...
>
> That way I can confirm your libraries are installed correctly, and you are
> authenticating sanely et al.
>
> brett
>
>
>
>
>
>
>
>
>
> On Mon, Jan 17, 2011 at 2:49 PM, Laki <apoli...@stetson.edu> wrote:
> > Hi. I'm using ASP.NET and the Google Client to access a blog on a
> > website I'm developing. I can access the feed for the blog online
> > without any issues:http://flomotionblog.blogspot.com/feeds/posts/default
> > . Whenever I try to call it through our web server test.theflomo.com,
> > I get nothing but a session time out.
>
> > Here's the error I'm getting:
>
> > --------------------------------------------------------------------------- -----------------------------------------------------------------------
> > [WebException: The operation has timed out]
> >   System.Net.HttpWebRequest.GetRequestStream(TransportContext&
> > context) +1876129
> >   System.Net.HttpWebRequest.GetRequestStream() +13
>
> > Google.GData.Client.Utilities.QueryClientLoginToken(GDataCredentials
> > gc, String serviceName, String applicationName, Boolean fUseKeepAlive,
> > Uri clientLoginHandler) +564
>
> > Google.GData.Client.GDataGAuthRequest.QueryAuthToken(GDataCredentials
> > gc) +248
> >   Google.GData.Client.GDataGAuthRequest.EnsureCredentials() +41
> >   Google.GData.Client.GDataRequest.EnsureWebRequest() +1101
> >   Google.GData.Client.GDataGAuthRequest.EnsureWebRequest() +26
> >   Google.GData.Client.GDataRequest.Execute() +42
>
> > [GDataRequestException: Execution of request failed:
> >http://flomotionblog.blogspot.com/feeds/posts/default]
> >   Google.GData.Client.GDataRequest.Execute() +162
> >   Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
> > +402
> >   Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
> > +423
> >   Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
> > +423
> >   Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
> > +423
> >   Google.GData.Client.GDataGAuthRequest.Execute() +10
> >   Google.GData.Client.Service.Query(Uri queryUri, DateTime
> > ifModifiedSince, String etag, Int64& contentLength) +193
> >   Google.GData.Client.Service.Query(FeedQuery feedQuery) +202
> >   FloMoTest.blog.loadBlog() in blog.aspx.cs:52
> >   FloMoTest.blog.Page_Load(Object sender, EventArgs e) in
> > blog.aspx.cs:36
> >   System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp,
> > Object o, Object t, EventArgs e) +14
> >   System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object
> > sender, EventArgs e) +35
> >   System.Web.UI.Control.OnLoad(EventArgs e) +99
> >   System.Web.UI.Control.LoadRecursive() +50
> >   System.Web.UI.Page.ProcessRequestMain(Boolean
> > includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
> > +627
>
> > --------------------------------------------------------------------------- -----------------------------------------------------------------------
>
> > Here's my code behind:
>
> > --------------------------------------------------------------------------- -----------------------------------------------------------------------
> > using System;
> > using System.Collections;
> > using System.Collections.Generic;
> > using System.Configuration;
> > using System.Data;
> > using System.Linq;
> > using System.Web;
> > using System.Web.Security;
> > using System.Web.UI;
> > using System.Web.UI.HtmlControls;
> > using System.Web.UI.WebControls;
> > using System.Web.UI.WebControls.WebParts;
> > using System.Xml.Linq;
> > using Google.GData.Blogger;
> > using Google.GData.Client;
> > using Google.GData.Extensions;
>
> > namespace FloMoTest
> > {
> >        public partial class blog : System.Web.UI.Page
> >        {
> >                private struct BlogItem
> >                {
> >                        public string title { get; set; }
> >                        public string authors { get; set; }
> >                        public string dates { get; set; }
> >                        public string links { get; set; }
> >                        public string summary { get; set; }
> >                        public string fullText { get; set; }
> >                        public string reqURI { get; set; }
> >                }
>
> >                protected void Page_Load(object sender, EventArgs e)
> >                {
>
> >                        loadBlog();
> >                }
> >                protected void loadBlog()
> >                {
>
> >                        string userName = "XXXXXXXXXX";
> >                        string passWord = "XXXXXXXXXX";
>
> >                        FeedQuery feedQuery = new FeedQuery();
> >                        feedQuery.Uri = new Uri("
> >http://flomotionblog.blogspot.com/feeds/
> > posts/default");
>
> >                        Service googleService = new Service("blogger",
> > "theFloMo.com");
> >                        googleService.Credentials = new
> > GDataCredentials(userName,
> > passWord);
>
> >                        AtomFeed atomFeed = null;
>
> >                        atomFeed = googleService.Query(feedQuery);
>
> >                        AtomLink atomLink = new AtomLink();
>
> >                        List<BlogItem> BlogItems = new List<BlogItem>();
>
> >                        foreach (AtomEntry entry in atomFeed.Entries)
> >                        {
> >                                string itemSummary = "";
> >                                string itemTitle = entry.Title.Text;
> >                                string itemAuthors =
> > entry.Authors[0].Name.ToString();
> >                                string itemDates =
>
> > entry.Published.ToLongDateString().Remove((entry.Published.ToLongDateString ().Length
> > - 6), (6));
> >                                string itemLinks =
> > entry.Links[1].HRef.ToString();
> >                                string itemReqURI =
> > entry.Id.AbsoluteUri.Remove(0, 51);
>
> >                                if (entry.Content.Content.Length <= 550)
> >                                {
> >                                        itemSummary = entry.Content.Content;
> >                                }
> >                                else
> >                                {
> >                                        itemSummary =
> > (entry.Content.Content.Remove(550) + " ...");
> >                                }
> >                                string itemFullText = entry.Content.Content;
>
> >                                BlogItems.Add(new BlogItem()
> >                                {
> >                                        title = itemTitle,
> >                                        authors = itemAuthors,
> >                                        dates = itemDates,
> >                                        links = itemLinks,
> >                                        summary = itemSummary,
> >                                        fullText = itemFullText,
> >                                        reqURI = itemReqURI,
> >                                });
> >                        }
> >                        if (BlogItems.Count >= 5)
> >                        {
> >                                blogRPT.DataSource = BlogItems.Take(5);
> >                        }
> >                        else
> >                        {
> >                                blogRPT.DataSource = BlogItems;
> >                        }
> >                        blogRPT.DataBind();
>
> >                }
> >        }
> > }
>
> > --------------------------------------------------------------------------- -----------------------------------------------------------------------
>
> > Any help would be appreciated.
>
> > Thank you,
>
> > Laki Politis.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
>
> Brett Morgan
>
> Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Operation TimeOut on Test Server not on LocalHost

Heya Laki,

Before I dive into trying to understand what is broken in your code, can you please confirm that the following example code works in your environment?


That way I can confirm your libraries are installed correctly, and you are authenticating sanely et al.

brett

On Mon, Jan 17, 2011 at 2:49 PM, Laki <apolitis@stetson.edu> wrote:
Hi. I'm using ASP.NET and the Google Client to access a blog on a
website I'm developing. I can access the feed for the blog online
without any issues: http://flomotionblog.blogspot.com/feeds/posts/default
. Whenever I try to call it through our web server test.theflomo.com,
I get nothing but a session time out.

Here's the error I'm getting:
--------------------------------------------------------------------------------------------------------------------------------------------------
[WebException: The operation has timed out]
  System.Net.HttpWebRequest.GetRequestStream(TransportContext&
context) +1876129
  System.Net.HttpWebRequest.GetRequestStream() +13

Google.GData.Client.Utilities.QueryClientLoginToken(GDataCredentials
gc, String serviceName, String applicationName, Boolean fUseKeepAlive,
Uri clientLoginHandler) +564

Google.GData.Client.GDataGAuthRequest.QueryAuthToken(GDataCredentials
gc) +248
  Google.GData.Client.GDataGAuthRequest.EnsureCredentials() +41
  Google.GData.Client.GDataRequest.EnsureWebRequest() +1101
  Google.GData.Client.GDataGAuthRequest.EnsureWebRequest() +26
  Google.GData.Client.GDataRequest.Execute() +42

[GDataRequestException: Execution of request failed:
http://flomotionblog.blogspot.com/feeds/posts/default]
  Google.GData.Client.GDataRequest.Execute() +162
  Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
+402
  Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
+423
  Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
+423
  Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
+423
  Google.GData.Client.GDataGAuthRequest.Execute() +10
  Google.GData.Client.Service.Query(Uri queryUri, DateTime
ifModifiedSince, String etag, Int64& contentLength) +193
  Google.GData.Client.Service.Query(FeedQuery feedQuery) +202
  FloMoTest.blog.loadBlog() in blog.aspx.cs:52
  FloMoTest.blog.Page_Load(Object sender, EventArgs e) in
blog.aspx.cs:36
  System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp,
Object o, Object t, EventArgs e) +14
  System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object
sender, EventArgs e) +35
  System.Web.UI.Control.OnLoad(EventArgs e) +99
  System.Web.UI.Control.LoadRecursive() +50
  System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
+627
--------------------------------------------------------------------------------------------------------------------------------------------------

Here's my code behind:
--------------------------------------------------------------------------------------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Google.GData.Blogger;
using Google.GData.Client;
using Google.GData.Extensions;

namespace FloMoTest
{
       public partial class blog : System.Web.UI.Page
       {
               private struct BlogItem
               {
                       public string title { get; set; }
                       public string authors { get; set; }
                       public string dates { get; set; }
                       public string links { get; set; }
                       public string summary { get; set; }
                       public string fullText { get; set; }
                       public string reqURI { get; set; }
               }

               protected void Page_Load(object sender, EventArgs e)
               {

                       loadBlog();
               }
               protected void loadBlog()
               {

                       string userName = "XXXXXXXXXX";
                       string passWord = "XXXXXXXXXX";

                       FeedQuery feedQuery = new FeedQuery();
                       feedQuery.Uri = new Uri("http://flomotionblog.blogspot.com/feeds/
posts/default
");

                       Service googleService = new Service("blogger", "theFloMo.com");
                       googleService.Credentials = new GDataCredentials(userName,
passWord);

                       AtomFeed atomFeed = null;

                       atomFeed = googleService.Query(feedQuery);

                       AtomLink atomLink = new AtomLink();

                       List<BlogItem> BlogItems = new List<BlogItem>();

                       foreach (AtomEntry entry in atomFeed.Entries)
                       {
                               string itemSummary = "";
                               string itemTitle = entry.Title.Text;
                               string itemAuthors = entry.Authors[0].Name.ToString();
                               string itemDates =
entry.Published.ToLongDateString().Remove((entry.Published.ToLongDateString().Length
- 6), (6));
                               string itemLinks = entry.Links[1].HRef.ToString();
                               string itemReqURI = entry.Id.AbsoluteUri.Remove(0, 51);

                               if (entry.Content.Content.Length <= 550)
                               {
                                       itemSummary = entry.Content.Content;
                               }
                               else
                               {
                                       itemSummary = (entry.Content.Content.Remove(550) + " ...");
                               }
                               string itemFullText = entry.Content.Content;

                               BlogItems.Add(new BlogItem()
                               {
                                       title = itemTitle,
                                       authors = itemAuthors,
                                       dates = itemDates,
                                       links = itemLinks,
                                       summary = itemSummary,
                                       fullText = itemFullText,
                                       reqURI = itemReqURI,
                               });
                       }
                       if (BlogItems.Count >= 5)
                       {
                               blogRPT.DataSource = BlogItems.Take(5);
                       }
                       else
                       {
                               blogRPT.DataSource = BlogItems;
                       }
                       blogRPT.DataBind();

               }
       }
}

--------------------------------------------------------------------------------------------------------------------------------------------------

Any help would be appreciated.

Thank you,

Laki Politis.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--

Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Operation TimeOut on Test Server not on LocalHost

Hi. I'm using ASP.NET and the Google Client to access a blog on a
website I'm developing. I can access the feed for the blog online
without any issues: http://flomotionblog.blogspot.com/feeds/posts/default
. Whenever I try to call it through our web server test.theflomo.com,
I get nothing but a session time out.

Here's the error I'm getting:
--------------------------------------------------------------------------------------------------------------------------------------------------
[WebException: The operation has timed out]
System.Net.HttpWebRequest.GetRequestStream(TransportContext&
context) +1876129
System.Net.HttpWebRequest.GetRequestStream() +13

Google.GData.Client.Utilities.QueryClientLoginToken(GDataCredentials
gc, String serviceName, String applicationName, Boolean fUseKeepAlive,
Uri clientLoginHandler) +564

Google.GData.Client.GDataGAuthRequest.QueryAuthToken(GDataCredentials
gc) +248
Google.GData.Client.GDataGAuthRequest.EnsureCredentials() +41
Google.GData.Client.GDataRequest.EnsureWebRequest() +1101
Google.GData.Client.GDataGAuthRequest.EnsureWebRequest() +26
Google.GData.Client.GDataRequest.Execute() +42

[GDataRequestException: Execution of request failed:
http://flomotionblog.blogspot.com/feeds/posts/default]
Google.GData.Client.GDataRequest.Execute() +162
Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
+402
Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
+423
Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
+423
Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
+423
Google.GData.Client.GDataGAuthRequest.Execute() +10
Google.GData.Client.Service.Query(Uri queryUri, DateTime
ifModifiedSince, String etag, Int64& contentLength) +193
Google.GData.Client.Service.Query(FeedQuery feedQuery) +202
FloMoTest.blog.loadBlog() in blog.aspx.cs:52
FloMoTest.blog.Page_Load(Object sender, EventArgs e) in
blog.aspx.cs:36
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp,
Object o, Object t, EventArgs e) +14
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object
sender, EventArgs e) +35
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +50
System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
+627
--------------------------------------------------------------------------------------------------------------------------------------------------

Here's my code behind:
--------------------------------------------------------------------------------------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Google.GData.Blogger;
using Google.GData.Client;
using Google.GData.Extensions;

namespace FloMoTest
{
public partial class blog : System.Web.UI.Page
{
private struct BlogItem
{
public string title { get; set; }
public string authors { get; set; }
public string dates { get; set; }
public string links { get; set; }
public string summary { get; set; }
public string fullText { get; set; }
public string reqURI { get; set; }
}

protected void Page_Load(object sender, EventArgs e)
{

loadBlog();
}
protected void loadBlog()
{

string userName = "XXXXXXXXXX";
string passWord = "XXXXXXXXXX";

FeedQuery feedQuery = new FeedQuery();
feedQuery.Uri = new Uri("http://flomotionblog.blogspot.com/feeds/
posts/default
");

Service googleService = new Service("blogger", "theFloMo.com");
googleService.Credentials = new GDataCredentials(userName,
passWord);

AtomFeed atomFeed = null;

atomFeed = googleService.Query(feedQuery);

AtomLink atomLink = new AtomLink();

List<BlogItem> BlogItems = new List<BlogItem>();

foreach (AtomEntry entry in atomFeed.Entries)
{
string itemSummary = "";
string itemTitle = entry.Title.Text;
string itemAuthors = entry.Authors[0].Name.ToString();
string itemDates =
entry.Published.ToLongDateString().Remove((entry.Published.ToLongDateString().Length
- 6), (6));
string itemLinks = entry.Links[1].HRef.ToString();
string itemReqURI = entry.Id.AbsoluteUri.Remove(0, 51);

if (entry.Content.Content.Length <= 550)
{
itemSummary = entry.Content.Content;
}
else
{
itemSummary = (entry.Content.Content.Remove(550) + " ...");
}
string itemFullText = entry.Content.Content;

BlogItems.Add(new BlogItem()
{
title = itemTitle,
authors = itemAuthors,
dates = itemDates,
links = itemLinks,
summary = itemSummary,
fullText = itemFullText,
reqURI = itemReqURI,
});
}
if (BlogItems.Count >= 5)
{
blogRPT.DataSource = BlogItems.Take(5);
}
else
{
blogRPT.DataSource = BlogItems;
}
blogRPT.DataBind();

}
}
}

--------------------------------------------------------------------------------------------------------------------------------------------------

Any help would be appreciated.

Thank you,

Laki Politis.

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Re: Get Post using ObjectC

Heya Cesare,

Does this cover your question? http://www.google.com/support/blogger/bin/answer.py?hl=en&answer=42673

Otherwise I suggest our FAQ and our Help Forum as being good places to answer these questions:

http://www.google.com/support/blogger/

http://www.google.com/support/forum/p/blogger

On Mon, Jan 17, 2011 at 1:40 AM, NiBE <nibe@mail.ru> wrote:
Thank you Morgan,
I try to figure out right now how it works.
I have a small question, I think it's not exaclty the right place, but
maybe someone can help me.
I would like to know if it possible to write a post which is readble
only from certain people.
As example I have a blog which is free and everybody can read it. But
I want also post some article which are readable only from few people.
is this possible?


thank you for all

Cesare


On Jan 15, 7:33 pm, Brett Morgan <brettmor...@google.com> wrote:
> Heya NiBE,
>
> Have you gone through the GData Objective C example application?
>
> http://code.google.com/p/gdata-objectivec-client/source/browse/#svn%2...
>
> brett
>
>
>
> On Sun, Jan 16, 2011 at 1:41 AM, NiBE <n...@mail.ru> wrote:
> > Hi all,
> > I'm new to GoogleAPI. I'm sorry to bother you, I hope someone can help
> > me.
> > Basically what I would like to do is to retrive posts from my own blog
> > using a object-C
> > I have already create a project import google framework.
> > But know I'm stuck, I trying to find some simple example, none can
> > help me?
> > Or advice where can I get soem sample code?
>
> > thank you very much
>
> > NiBE
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
>
> Brett Morgan
>
> Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--

Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Re: Get Post using ObjectC

On 2011-01-16 16:40, NiBE wrote:
> Thank you Morgan,
> I try to figure out right now how it works.
> I have a small question, I think it's not exaclty the right place, but
> maybe someone can help me.
> I would like to know if it possible to write a post which is readble
> only from certain people.
> As example I have a blog which is free and everybody can read it. But
> I want also post some article which are readable only from few people.
> is this possible?
>

As I know you can make blog readable by selected Google accounts.

But seems per post security policy is not available.

You can create another blog (blogger does not restrict blog count)
and refer from main blog article to secure blog.

--
Best regards!

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] uploading photo's to blog (new editor)

Hey Jenny,

The Help Forum is a better place to raise these sorts of questions.

brett

On Sun, Jan 16, 2011 at 12:05 AM, jennyc <tayac21@gmail.com> wrote:
When iItry to upload photo's to my blog, I get a screen which says
"Sign In" (cloud picker).

but when I try I get an error message "The feature you requested is
currently unavailable. Please try again later."

This is bloody annoying as I have to use the old editor which is a
hassle...

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--

Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Re: Get Post using ObjectC

Thank you Morgan,
I try to figure out right now how it works.
I have a small question, I think it's not exaclty the right place, but
maybe someone can help me.
I would like to know if it possible to write a post which is readble
only from certain people.
As example I have a blog which is free and everybody can read it. But
I want also post some article which are readable only from few people.
is this possible?


thank you for all

Cesare


On Jan 15, 7:33 pm, Brett Morgan <brettmor...@google.com> wrote:
> Heya NiBE,
>
> Have you gone through the GData Objective C example application?
>
> http://code.google.com/p/gdata-objectivec-client/source/browse/#svn%2...
>
> brett
>
>
>
> On Sun, Jan 16, 2011 at 1:41 AM, NiBE <n...@mail.ru> wrote:
> > Hi all,
> > I'm new to GoogleAPI. I'm sorry to bother you, I hope someone can help
> > me.
> > Basically what I would like to do is to retrive posts from my own blog
> > using a object-C
> > I have already create a project import google framework.
> > But know I'm stuck, I trying to find some simple example, none can
> > help me?
> > Or advice where can I get soem sample code?
>
> > thank you very much
>
> > NiBE
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
>
> Brett Morgan
>
> Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Saturday, January 15, 2011

Re: [bloggerDev] Get Post using ObjectC

Heya NiBE,

Have you gone through the GData Objective C example application? 


brett

On Sun, Jan 16, 2011 at 1:41 AM, NiBE <nibe@mail.ru> wrote:
Hi all,
I'm new to GoogleAPI. I'm sorry to bother you, I hope someone can help
me.
Basically what I would like to do is to retrive posts from my own blog
using a object-C
I have already create a project import google framework.
But know I'm stuck, I trying to find some simple example, none can
help me?
Or advice where can I get soem sample code?

thank you very much

NiBE

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--

Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Get Post using ObjectC

Hi all,
I'm new to GoogleAPI. I'm sorry to bother you, I hope someone can help
me.
Basically what I would like to do is to retrive posts from my own blog
using a object-C
I have already create a project import google framework.
But know I'm stuck, I trying to find some simple example, none can
help me?
Or advice where can I get soem sample code?

thank you very much

NiBE

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] uploading photo's to blog (new editor)

When iItry to upload photo's to my blog, I get a screen which says
"Sign In" (cloud picker).

but when I try I get an error message "The feature you requested is
currently unavailable. Please try again later."

This is bloody annoying as I have to use the old editor which is a
hassle...

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Friday, January 14, 2011

Re: [bloggerDev] Re: Search for blogs in general

Hey Shirpaa,

Yes I understand your requirements, but unfortunately I don't currently have an API that matches your requirements.

brett

On Sat, Jan 15, 2011 at 7:23 AM, Shirpaa <shirpa.manoharan@gmail.com> wrote:
I need to build a desktop application (preferably in Java) which when
given a query word (Eg: soccer) fetches a set of blog posts (along
with metadata) which could be saved as text files. In Blogger data
API, I will be able to search the result feeds by passing in a query,
which is exactly what I want. I want the user profiles (search space)
to be in tens of thousands so that I will get a wide variety of blog
posts. The saved text files are going to be used for analysis with a
text analytics tool.

I hope you understand my requirement. Please let me know if there is
any service provided by Google App engine which can nearly satisfy my
requirement. Thank you.

Regards
Shirpaa

On Jan 14, 2:47 pm, Brett Morgan <brettmor...@google.com> wrote:
> I'm curious what you are attempting to build?
>
>
>
>
>
>
>
>
>
> On Sat, Jan 15, 2011 at 6:40 AM, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> > Thanks Mr. Morgan.
>
> > I still have a problem in using Google blog search API. It helps in
> > getting the link for the blog site which is unstructured data (Please
> > correct me if I am wrong). I am looking for downloading a bunch of
> > blog posts (structured data with all metadata) related to a particular
> > query word. Blogger data api provides me with structured data with
> > search capability as well which is what I am looking for.
>
> > Related to the topic I have one other query. Using Blogger data API is
> > there any chance that I collect user profile Ids in Blogger user base
> > on a scale of tens of thousands. This will very well satisfy my
> > requirement.
>
> > Any help will be greatly appreciated.
>
> > Thanks
> > Shirpaa
>
> > On Jan 14, 2:30 pm, Brett Morgan <brettmor...@google.com> wrote:
> > > Probably the best answer at this point ishttp://blogsearch.google.com/
>
> > > On Sat, Jan 15, 2011 at 5:36 AM, Shirpaa <shirpa.manoha...@gmail.com>
> > wrote:
> > > > If this functionality is provided in any other language, please let me
> > > > know about it.
>
> > > > On Jan 13, 6:38 pm, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> > > > > Hello,
>
> > > > > I am trying to use Blogger data API for searching for all blog posts
> > > > > in Blogger. As mentioned in a few other questions, I am able to
> > access
> > > > > only my personal account blog posts. But how do I use it to search
> > all
> > > > > blog posts on blogger. I am using Java client lib. Any help would be
> > > > > greatly appreciated.
>
> > > > > Thanks
> > > > > Shirpaa
>
> > > > --
> > > > You received this message because you are subscribed to the Google
> > Groups
> > > > "Blogger Developer Group" group.
> > > > To post to this group, send email to bloggerdev@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > <bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > > > .
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/bloggerdev?hl=en.
>
> > > --
>
> > > Brett Morgan
>
> > > Developer Programs Engineer, Blogger
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
>
> Brett Morgan
>
> Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--

Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Re: Search for blogs in general

I need to build a desktop application (preferably in Java) which when
given a query word (Eg: soccer) fetches a set of blog posts (along
with metadata) which could be saved as text files. In Blogger data
API, I will be able to search the result feeds by passing in a query,
which is exactly what I want. I want the user profiles (search space)
to be in tens of thousands so that I will get a wide variety of blog
posts. The saved text files are going to be used for analysis with a
text analytics tool.

I hope you understand my requirement. Please let me know if there is
any service provided by Google App engine which can nearly satisfy my
requirement. Thank you.

Regards
Shirpaa

On Jan 14, 2:47 pm, Brett Morgan <brettmor...@google.com> wrote:
> I'm curious what you are attempting to build?
>
>
>
>
>
>
>
>
>
> On Sat, Jan 15, 2011 at 6:40 AM, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> > Thanks Mr. Morgan.
>
> > I still have a problem in using Google blog search API. It helps in
> > getting the link for the blog site which is unstructured data (Please
> > correct me if I am wrong). I am looking for downloading a bunch of
> > blog posts (structured data with all metadata) related to a particular
> > query word. Blogger data api provides me with structured data with
> > search capability as well which is what I am looking for.
>
> > Related to the topic I have one other query. Using Blogger data API is
> > there any chance that I collect user profile Ids in Blogger user base
> > on a scale of tens of thousands. This will very well satisfy my
> > requirement.
>
> > Any help will be greatly appreciated.
>
> > Thanks
> > Shirpaa
>
> > On Jan 14, 2:30 pm, Brett Morgan <brettmor...@google.com> wrote:
> > > Probably the best answer at this point ishttp://blogsearch.google.com/
>
> > > On Sat, Jan 15, 2011 at 5:36 AM, Shirpaa <shirpa.manoha...@gmail.com>
> > wrote:
> > > > If this functionality is provided in any other language, please let me
> > > > know about it.
>
> > > > On Jan 13, 6:38 pm, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> > > > > Hello,
>
> > > > > I am trying to use Blogger data API for searching for all blog posts
> > > > > in Blogger. As mentioned in a few other questions, I am able to
> > access
> > > > > only my personal account blog posts. But how do I use it to search
> > all
> > > > > blog posts on blogger. I am using Java client lib. Any help would be
> > > > > greatly appreciated.
>
> > > > > Thanks
> > > > > Shirpaa
>
> > > > --
> > > > You received this message because you are subscribed to the Google
> > Groups
> > > > "Blogger Developer Group" group.
> > > > To post to this group, send email to bloggerdev@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > <bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > > > .
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/bloggerdev?hl=en.
>
> > > --
>
> > > Brett Morgan
>
> > > Developer Programs Engineer, Blogger
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
>
> Brett Morgan
>
> Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Other lay-out pages

On 2011-01-14 16:18, zwan wrote:
> Is it possible to make different lay-outs per page in one blogspot?
>
You can try add many 'if' statement to template to make this, like:

<b:if cond='data:blog.pageType == "archive"'>
...
</b:if>
<b:if cond='data:blog.pageType == "index"'>
...
</b:if>

<b:if cond='data:blog.homepageUrl != data:blog.url'>
...
</b:if>

<b:if cond='data:title != &quot;&quot;'>
...
</b:if>


As you can see you can check blog url/title
for customizing blogger design.


* Available data.

See

http://www.google.com/support/blogger/bin/answer.py?answer=47270

** Globally available data.

This information applies to the entire page, so you can use it anywhere,
unlike other data which can only be used in a specific widget. These
should be
referenced as part of the overall "blog" data, e.g. as <data:blog.title/>,
etc.

* title: The blog's title.
* pageType: The type of the current page. One of 'item', 'archive',
'index',
or 'static_page'.
* url: The URL of the current page.
* homepageUrl: The homepage of the blog.
* pageTitle: The title of the current page. This is often the blog title,
but may contain additional information on archive or post pages.
* encoding: The encoding to use for the blog, e.g. UTF-8.
* languageDirection: Either "ltr" or "rtl" for left-to-right and
right-to-left languages, respectively.
* feedLinks: The autodiscovery feed links for the page header.
* defaultAdStart: Place adware.

--
Best regards!

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Re: Search for blogs in general

I'm curious what you are attempting to build?

On Sat, Jan 15, 2011 at 6:40 AM, Shirpaa <shirpa.manoharan@gmail.com> wrote:
Thanks Mr. Morgan.

I still have a problem in using Google blog search API. It helps in
getting the link for the blog site which is unstructured data (Please
correct me if I am wrong). I am looking for downloading a bunch of
blog posts (structured data with all metadata) related to a particular
query word. Blogger data api provides me with structured data with
search capability as well which is what I am looking for.

Related to the topic I have one other query. Using Blogger data API is
there any chance that I collect user profile Ids in Blogger user base
on a scale of tens of thousands. This will very well satisfy my
requirement.

Any help will be greatly appreciated.

Thanks
Shirpaa

On Jan 14, 2:30 pm, Brett Morgan <brettmor...@google.com> wrote:
> Probably the best answer at this point ishttp://blogsearch.google.com/
>
>
>
>
>
>
>
>
>
> On Sat, Jan 15, 2011 at 5:36 AM, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> > If this functionality is provided in any other language, please let me
> > know about it.
>
> > On Jan 13, 6:38 pm, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> > > Hello,
>
> > > I am trying to use Blogger data API for searching for all blog posts
> > > in Blogger. As mentioned in a few other questions, I am able to access
> > > only my personal account blog posts. But how do I use it to search all
> > > blog posts on blogger. I am using Java client lib. Any help would be
> > > greatly appreciated.
>
> > > Thanks
> > > Shirpaa
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
>
> Brett Morgan
>
> Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--

Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Re: Search for blogs in general

Thanks Mr. Morgan.

I still have a problem in using Google blog search API. It helps in
getting the link for the blog site which is unstructured data (Please
correct me if I am wrong). I am looking for downloading a bunch of
blog posts (structured data with all metadata) related to a particular
query word. Blogger data api provides me with structured data with
search capability as well which is what I am looking for.

Related to the topic I have one other query. Using Blogger data API is
there any chance that I collect user profile Ids in Blogger user base
on a scale of tens of thousands. This will very well satisfy my
requirement.

Any help will be greatly appreciated.

Thanks
Shirpaa

On Jan 14, 2:30 pm, Brett Morgan <brettmor...@google.com> wrote:
> Probably the best answer at this point ishttp://blogsearch.google.com/
>
>
>
>
>
>
>
>
>
> On Sat, Jan 15, 2011 at 5:36 AM, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> > If this functionality is provided in any other language, please let me
> > know about it.
>
> > On Jan 13, 6:38 pm, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> > > Hello,
>
> > > I am trying to use Blogger data API for searching for all blog posts
> > > in Blogger. As mentioned in a few other questions, I am able to access
> > > only my personal account blog posts. But how do I use it to search all
> > > blog posts on blogger. I am using Java client lib. Any help would be
> > > greatly appreciated.
>
> > > Thanks
> > > Shirpaa
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Blogger Developer Group" group.
> > To post to this group, send email to bloggerdev@googlegroups.com.
> > To unsubscribe from this group, send email to
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/bloggerdev?hl=en.
>
> --
>
> Brett Morgan
>
> Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Re: [bloggerDev] Re: Search for blogs in general

Probably the best answer at this point is http://blogsearch.google.com/

On Sat, Jan 15, 2011 at 5:36 AM, Shirpaa <shirpa.manoharan@gmail.com> wrote:
If this functionality is provided in any other language, please let me
know about it.

On Jan 13, 6:38 pm, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> Hello,
>
> I am trying to use Blogger data API for searching for all blog posts
> in Blogger. As mentioned in a few other questions, I am able to access
> only my personal account blog posts. But how do I use it to search all
> blog posts on blogger. I am using Java client lib. Any help would be
> greatly appreciated.
>
> Thanks
> Shirpaa

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.




--

Brett Morgan

Developer Programs Engineer, Blogger

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Re: Search for blogs in general

If this functionality is provided in any other language, please let me
know about it.

On Jan 13, 6:38 pm, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> Hello,
>
> I am trying to use Blogger data API for searching for all blog posts
> in Blogger. As mentioned in a few other questions, I am able to access
> only my personal account blog posts. But how do I use it to search all
> blog posts on blogger. I am using Java client lib. Any help would be
> greatly appreciated.
>
> Thanks
> Shirpaa

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

[bloggerDev] Other lay-out pages

Is it possible to make different lay-outs per page in one blogspot?

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.

Thursday, January 13, 2011

[bloggerDev] Search for blogs in general

Hello,

I am trying to use Blogger data API for searching for all blog posts
in Blogger. As mentioned in a few other questions, I am able to access
only my personal account blog posts. But how do I use it to search all
blog posts on blogger. I am using Java client lib. Any help would be
greatly appreciated.

Thanks
Shirpaa

--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To post to this group, send email to bloggerdev@googlegroups.com.
To unsubscribe from this group, send email to bloggerdev+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/bloggerdev?hl=en.