Search This Site
Friday, January 21, 2011
Re: [bloggerDev] Is there a way that i can change the post content?
--
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: Extracting unchanged content from a post
I've put together the following vb.net console to demonstrate the
issue.
I went ahead and removed my credentials before posting it, but it's a
public blog, so it should be accessible with any login.
Imports Google.GData.Client
Module Module1
Sub Main()
Dim thisService As Service = New Service("blogger",
"RobFine.com")
thisService.Credentials = New GDataCredentials("MYUSERNAME",
"MYPASSWORD")
Dim thisFactory As GDataGAuthRequestFactory =
CType(thisService.RequestFactory, GDataGAuthRequestFactory)
thisFactory.AccountType = "GOOGLE"
Dim query As New Google.GData.Client.FeedQuery()
query.Uri = New Uri("http://www.blogger.com/feeds/
3834455919215962619/posts/default/5777934424638844396")
Dim feed As Google.GData.Client.AtomFeed =
thisService.Query(query)
For Each thisEntry As AtomEntry In feed.Entries
System.Console.WriteLine(thisEntry.Title.Text)
System.Console.WriteLine()
System.Console.WriteLine(thisEntry.Content.Content.Replace("<br />",
vbCrLf))
System.Console.WriteLine()
Next
System.Console.ReadLine()
End Sub
End Module
As a further example, here is that same entry shown on blogspot:
http://atlantawebsites.blogspot.com/2011/01/pay-no-attention-to-man-behind-curtain.html
And that same entry shown after being pulled through the .NET GData
API:
http://www.robfine.com/aspnet/Paynoattentiontothemanbehindthecurtain
Thanks!
Rob
On Jan 20, 2:10 pm, Brett Morgan <brettmor...@google.com> wrote:
> Hey Rob,
>
> I suspect you have uncovered a bug in our .Net GData API.
>
> Can you boil this down to a simple c# or vb console app and log a bug
> against the issue tracker?http://code.google.com/p/google-gdata/issues/list
>
> Please ping me with the issue number so that I can track it from this end.
>
> brett
>
>
>
>
>
> On Fri, Jan 21, 2011 at 2:57 AM, Rob <robf...@gmail.com> wrote:
> > Hey all,
>
> > I am using the .NET API to pull the content from a blog I author about
> > tips and tricks I run across while developing websites and
> > applications, but I've lately run into an issue where the content I
> > pull is not exactly the same as what's being posted on blogspot.
>
> > Due to the nature of my blog, I'm constantly needing to display html
> > tags such as <body id="example"> but to have this display properly on
> > blogspot, I write it out as <body id="example">
>
> > However, when I pull my feed from the .NET API and extract the content
> > via thisFeedEntry.Content.Content, all of the blog content comes
> > already rendered with brackets instead of the ampersand encodings.
>
> > I tried doing a replace on all brackets to transform them back to >
> > and < but of course that changed all of the content's source code
> > over including line breaks, div panels and links. I don't want that.
>
> > Here's a good example of what I'm experiencing.
> > My blogspot shows the text <body runat="server" id="masterbody"> fine
> > here:
>
> >http://atlantawebsites.blogspot.com/2011/01/aspnet-body-onload-error-...
> > But when I pull it over through the API, the text with bracket
> > disappears at the browser is attempting to render it:
> >http://robfine.com/aspnet/ResolvingBodyOnLoadErrorBC30456whenrunatServer
>
> > Is there a way to pull the code exactly as is in blogspot with the
> > > and < text still intact?
>
> > Any help would be greatly appreciated.
> > Thanks!
>
> > --
> > 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- Hide quoted text -
>
> - Show quoted text -
--
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] How to get Post Content
I have the blogId and PostId of a post . how can i get the post
Content ( way to get comments is given in the Documentation). I am
using Java. Just tell me any URL Pattern i would be use to get the
same, if any.
Thanks,
Nitin
--
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 20, 2011
Re: [bloggerDev] Is there a way that i can change the post content?
Hi, what I need to do is the following:
I need to let the user the availability to hide his post content where he inserts [premium_content] dkslkdsal;kdlsl;ksad [/premium_content]
If the blogger user insert those tags the content between the tags should not appear to the visitor unless the visitor pay for it.
I have all the backend logic implement, but I would like to know if is posible to hide content from a post with the Blogger Gagdets api.
Thanks in advance.
--
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] Is there a way that i can change the post content?
I need to let the user the availability to hide his post content where he inserts [premium_content] dkslkdsal;kdlsl;ksad [/premium_content]
If the blogger user insert those tags the content between the tags should not appear to the visitor unless the visitor pay for it.
I have all the backend logic implement, but I would like to know if is posible to hide content from a post with the Blogger Gagdets api.
Thanks in advance.
--
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: i can't post comment via GData. i got status code 500. error code is bX-dr4jk.
> it should be in the next release.
What time is scheduled for release when?
Our service is using post comment via GData. I have to inform the
user.
On 1月21日, 午後1:45, Brett Morgan <brettmor...@google.com> wrote:
> On Fri, Jan 21, 2011 at 3:20 PM, ishikawa.rs <ishikawa...@gmail.com> wrote:
> > Hi, brett
>
> > Thanks reply.
>
> > The complete code is difficult. However, the following simple code to
> > reproduce.
>
> > GData libraries, GoogleCode for download.
>
> >http://code.google.com/p/gdata-python-client/downloads/detail?name=gd...
>
> > tanks!
>
> Yup, it's a bug in the server side. We're preparing a fix now, and it should
> be in the next release. I'll update this thread when it's out and tested.
>
> --
>
> 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: i can't post comment via GData. i got status code 500. error code is bX-dr4jk.
Thanks reply.
The complete code is difficult. However, the following simple code to
reproduce.
GData libraries, GoogleCode for download.
http://code.google.com/p/gdata-python-client/downloads/detail?name=gdata-2.0.13.zip
tanks!
app.yaml
-----
application: gdatatesting
version: 1
runtime: python
api_version: 1
handlers:
- url: /.*
script: helloworld.py
-----
helloworld.py
-----
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import atom
import gdata.urlfetch
import gdata.blogger.client
import gdata.blogger.service
blog_id = '3647310196379350198'
post_id = '2104562001412323939'
comment = {}
comment['username'] = 'youraccount' # google account
comment['password'] = 'yourpassword' # password
comment['content'] = 'test'
client =
gdata.blogger.service.BloggerService(email=comment['username'],
password=comment['password'],
source="TESTER")
client.ProgrammaticLogin()
new_comment = gdata.blogger.CommentEntry()
new_comment.content = atom.Content(text=comment['content'])
message = ""
try:
posted = client.AddComment(new_comment, blog_id=blog_id,
post_id=post_id)
message = 'Comment Post Success!'
except gdata.service.BadAuthentication, e:
message = e
except gdata.service.RequestError, e:
message = e.message['body']
except Exception, e:
message = e
print 'Content-Type: text/html'
print ''
print '<html><body>'
print "%s" % (message)
print '</body></html>'
-----
On 1月21日, 午後12:19, Brett Morgan <brettmor...@google.com> wrote:
> Hi,
>
> Can you please supply the full code to your AppEngine instance to me? We are
> looking at the logs currently, and I want more information on what is
> happening.
>
> brett
>
>
>
>
>
>
>
>
>
> On Fri, Jan 21, 2011 at 1:55 PM, ishikawa.rs <ishikawa...@gmail.com> wrote:
> > Hello.
>
> > I can't post a comment via GData Blogger API.
> > I got status code 500 and error code 'bX-dr4jk' in message.
> > using python appengine.
>
> > What happen?
>
> > Any idea?
>
> > * I also posted to Blogger Forum.
>
> >http://www.google.com/support/forum/p/blogger/thread?tid=1c4cb3d8c221...
>
> > thanks.
>
> > --- code is simple ---
> > client =
> > gdata.blogger.service.BloggerService(email=comment['username'],
>
> > password=comment['password'],
> > source="TESTER")
> > client.ProgrammaticLogin()
> > new_comment = gdata.blogger.CommentEntry()
> > new_comment.content = atom.Content(text=comment['content'])
>
> > posted = client.AddComment(new_comment, blog_id=blog_id,
> > post_id=post_id)
> > -----
>
> > --
> > 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: i can't post comment via GData. i got status code 500. error code is bX-dr4jk.
Hi, brett
Thanks reply.
The complete code is difficult. However, the following simple code to
reproduce.
GData libraries, GoogleCode for download.
http://code.google.com/p/gdata-python-client/downloads/detail?name=gdata-2.0.13.zip
tanks!
--
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: i can't post comment via GData. i got status code 500. error code is bX-dr4jk.
Thanks reply.
The complete code is difficult. However, the following simple code to
reproduce.
GData libraries, GoogleCode for download.
http://code.google.com/p/gdata-python-client/downloads/detail?name=gdata-2.0.13.zip
tanks!
app.yaml
-----
application: gdatatesting
version: 1
runtime: python
api_version: 1
handlers:
- url: /.*
script: helloworld.py
-----
helloworld.py
-----
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import atom
import gdata.urlfetch
import gdata.blogger.client
import gdata.blogger.service
blog_id = '3647310196379350198'
post_id = '2104562001412323939'
comment = {}
comment['username'] = 'ishikawa.rs' # google account
comment['password'] = 'fc3srx-7' # password
comment['content'] = 'test'
client =
gdata.blogger.service.BloggerService(email=comment['username'],
password=comment['password'],
source="TESTER")
client.ProgrammaticLogin()
new_comment = gdata.blogger.CommentEntry()
new_comment.content = atom.Content(text=comment['content'])
message = ""
try:
posted = client.AddComment(new_comment, blog_id=blog_id,
post_id=post_id)
message = 'Comment Post Success!'
except gdata.service.BadAuthentication, e:
message = e
except gdata.service.RequestError, e:
message = e.message['body']
except Exception, e:
message = e
print 'Content-Type: text/html'
print ''
print '<html><body>'
print "%s" % (message)
print '</body></html>'
-----
On 1月21日, 午後12:19, Brett Morgan <brettmor...@google.com> wrote:
> Hi,
>
> Can you please supply the full code to your AppEngine instance to me? We are
> looking at the logs currently, and I want more information on what is
> happening.
>
> brett
>
>
>
>
>
>
>
>
>
> On Fri, Jan 21, 2011 at 1:55 PM, ishikawa.rs <ishikawa...@gmail.com> wrote:
> > Hello.
>
> > I can't post a comment via GData Blogger API.
> > I got status code 500 and error code 'bX-dr4jk' in message.
> > using python appengine.
>
> > What happen?
>
> > Any idea?
>
> > * I also posted to Blogger Forum.
>
> >http://www.google.com/support/forum/p/blogger/thread?tid=1c4cb3d8c221...
>
> > thanks.
>
> > --- code is simple ---
> > client =
> > gdata.blogger.service.BloggerService(email=comment['username'],
>
> > password=comment['password'],
> > source="TESTER")
> > client.ProgrammaticLogin()
> > new_comment = gdata.blogger.CommentEntry()
> > new_comment.content = atom.Content(text=comment['content'])
>
> > posted = client.AddComment(new_comment, blog_id=blog_id,
> > post_id=post_id)
> > -----
>
> > --
> > 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] i can't post comment via GData. i got status code 500. error code is bX-dr4jk.
Hello.
I can't post a comment via GData Blogger API.
I got status code 500 and error code 'bX-dr4jk' in message.
using python appengine.
What happen?
Any idea?
* I also posted to Blogger Forum.
http://www.google.com/support/forum/p/blogger/thread?tid=1c4cb3d8c2213276&hl=en
thanks.
--- code is simple ---
client =
gdata.blogger.service.BloggerService(email=comment['username'],
password=comment['password'],
source="TESTER")
client.ProgrammaticLogin()
new_comment = gdata.blogger.CommentEntry()
new_comment.content = atom.Content(text=comment['content'])
posted = client.AddComment(new_comment, blog_id=blog_id,
post_id=post_id)
-----
--
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] i can't post comment via GData. i got status code 500. error code is bX-dr4jk.
I can't post a comment via GData Blogger API.
I got status code 500 and error code 'bX-dr4jk' in message.
using python appengine.
What happen?
Any idea?
* I also posted to Blogger Forum.
http://www.google.com/support/forum/p/blogger/thread?tid=1c4cb3d8c2213276&hl=en
thanks.
--- code is simple ---
client =
gdata.blogger.service.BloggerService(email=comment['username'],
password=comment['password'],
source="TESTER")
client.ProgrammaticLogin()
new_comment = gdata.blogger.CommentEntry()
new_comment.content = atom.Content(text=comment['content'])
posted = client.AddComment(new_comment, blog_id=blog_id,
post_id=post_id)
-----
--
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] Extracting unchanged content from a post
Hey all,
I am using the .NET API to pull the content from a blog I author about
tips and tricks I run across while developing websites and
applications, but I've lately run into an issue where the content I
pull is not exactly the same as what's being posted on blogspot.
Due to the nature of my blog, I'm constantly needing to display html
tags such as <body id="example"> but to have this display properly on
blogspot, I write it out as <body id="example">
However, when I pull my feed from the .NET API and extract the content
via thisFeedEntry.Content.Content, all of the blog content comes
already rendered with brackets instead of the ampersand encodings.
I tried doing a replace on all brackets to transform them back to >
and < but of course that changed all of the content's source code
over including line breaks, div panels and links. I don't want that.
Here's a good example of what I'm experiencing.
My blogspot shows the text <body runat="server" id="masterbody"> fine
here:
http://atlantawebsites.blogspot.com/2011/01/aspnet-body-onload-error-bc30456.html
But when I pull it over through the API, the text with bracket
disappears at the browser is attempting to render it:
http://robfine.com/aspnet/ResolvingBodyOnLoadErrorBC30456whenrunatServer
Is there a way to pull the code exactly as is in blogspot with the
> and < text still intact?
Any help would be greatly appreciated.
Thanks!
--
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] Extracting unchanged content from a post
I am using the .NET API to pull the content from a blog I author about
tips and tricks I run across while developing websites and
applications, but I've lately run into an issue where the content I
pull is not exactly the same as what's being posted on blogspot.
Due to the nature of my blog, I'm constantly needing to display html
tags such as <body id="example"> but to have this display properly on
blogspot, I write it out as <body id="example">
However, when I pull my feed from the .NET API and extract the content
via thisFeedEntry.Content.Content, all of the blog content comes
already rendered with brackets instead of the ampersand encodings.
I tried doing a replace on all brackets to transform them back to >
and < but of course that changed all of the content's source code
over including line breaks, div panels and links. I don't want that.
Here's a good example of what I'm experiencing.
My blogspot shows the text <body runat="server" id="masterbody"> fine
here:
http://atlantawebsites.blogspot.com/2011/01/aspnet-body-onload-error-bc30456.html
But when I pull it over through the API, the text with bracket
disappears at the browser is attempting to render it:
http://robfine.com/aspnet/ResolvingBodyOnLoadErrorBC30456whenrunatServer
Is there a way to pull the code exactly as is in blogspot with the
> and < text still intact?
Any help would be greatly appreciated.
Thanks!
--
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.
Wednesday, January 19, 2011
Re: [bloggerDev] Re: Post content extraction
Hello Mr. Morgan
I am using Java. I am able to retrieve summary for some posts but not
all. Any information on the reason for this will be greatly helpful
too.
I am looking for text extraction of the content for all posts. I would
also like to know if there is a better capability of extraction using
a different language.
Thank you
Shirpaa
On Jan 19, 1:34 am, Brett Morgan <brettmor...@google.com> wrote:
> Hi Shirpaa,
>
> Do you have a specific programming language in mind?
>
> brett
>
>
>
>
>
>
>
>
>
> On Wed, Jan 19, 2011 at 3:38 PM, Shirpaa <shirpa.manoha...@gmail.com> wrote:> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>
> > Hi
>
> > Is there any documented way of extracting only the text content of
> > posts when you have both blog id and post id. If so please give an
> > example or any suggestions would be greatly helpful.
>
> > Thank you
> > 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
> > .--
> > 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: Post content extraction
I am using Java. I am able to retrieve summary for some posts but not
all. Any information on the reason for this will be greatly helpful
too.
I am looking for text extraction of the content for all posts. I would
also like to know if there is a better capability of extraction using
a different language.
Thank you
Shirpaa
On Jan 19, 1:34 am, Brett Morgan <brettmor...@google.com> wrote:
> Hi Shirpaa,
>
> Do you have a specific programming language in mind?
>
> brett
>
>
>
>
>
>
>
>
>
> On Wed, Jan 19, 2011 at 3:38 PM, Shirpaa <shirpa.manoha...@gmail.com> wrote:
> > Hi
>
> > Is there any documented way of extracting only the text content of
> > posts when you have both blog id and post id. If so please give an
> > example or any suggestions would be greatly helpful.
>
> > Thank you
> > 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.
Tuesday, January 18, 2011
Re: [bloggerDev] Post content extraction
Hi
Is there any documented way of extracting only the text content of
posts when you have both blog id and post id. If so please give an
example or any suggestions would be greatly helpful.
Thank you
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.
Re: [bloggerDev] Re: Operation TimeOut on Test Server not on LocalHost
VPS Here I come... firewall was the issue--
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: Operation TimeOut on Test Server not on LocalHost
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] Post content extraction
Is there any documented way of extracting only the text content of
posts when you have both blog id and post id. If so please give an
example or any suggestions would be greatly helpful.
Thank you
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.
Re: [bloggerDev] OpenID go fault return url
When I using my blog url as OpenID to login other serve, in the end, they return fault url back.What happen?--
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] OpenID go fault return url
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.
Monday, January 17, 2011
Re: [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.
--
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: Operation TimeOut on Test Server not on LocalHost
How would I get console code to run on my server?--
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: Operation TimeOut on Test Server not on LocalHost
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: Operation TimeOut on Test Server not on LocalHost
The Blogger sample from the Google Blogger API Sample runs--------------------------------------------------------------------------------------------using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using Google.GData.Client;using Google.GData.Blogger;using System.Net;namespace Blogger{/// <summary>/// Summary description for Calendar./// </summary>public class Blogger : System.Windows.Forms.Form{private System.Windows.Forms.Label label1;private System.Windows.Forms.Label label2;private System.Windows.Forms.Label label3;private System.Windows.Forms.TextBox UserName;private System.Windows.Forms.TextBox Password;private System.Windows.Forms.Button Go;/// <summary>/// Required designer variable./// </summary>private System.ComponentModel.Container components = null;private System.Windows.Forms.TextBox BloggerURI;private System.Windows.Forms.TreeView FeedView;private System.Windows.Forms.Button AddEntry;public System.Windows.Forms.ComboBox FeedChooser;
private ArrayList entryList;private string feedUri;public Blogger(){//// Required for Windows Form Designer support//InitializeComponent();//// TODO: Add any constructor code after InitializeComponent call//this.entryList = new ArrayList();this.feedUri = null;}/// <summary>/// The main entry point for the application./// </summary>[STAThread]static void Main(){Application.Run(new Blogger());}/// <summary>/// Clean up any resources being used./// </summary>protected override void Dispose( bool disposing ){if( disposing ){if(components != null){components.Dispose();}}base.Dispose( disposing );}#region Windows Form Designer generated code/// <summary>/// Required method for Designer support - do not modify/// the contents of this method with the code editor./// </summary>private void InitializeComponent(){this.BloggerURI = new System.Windows.Forms.TextBox();this.label1 = new System.Windows.Forms.Label();this.label2 = new System.Windows.Forms.Label();this.label3 = new System.Windows.Forms.Label();this.UserName = new System.Windows.Forms.TextBox();this.Password = new System.Windows.Forms.TextBox();this.Go = new System.Windows.Forms.Button();this.FeedView = new System.Windows.Forms.TreeView();this.AddEntry = new System.Windows.Forms.Button();this.FeedChooser = new System.Windows.Forms.ComboBox();this.SuspendLayout();//// BloggerURI//this.BloggerURI.Location = new System.Drawing.Point(88, 16);this.BloggerURI.Name = "BloggerURI";this.BloggerURI.Size = new System.Drawing.Size(296, 20);this.BloggerURI.TabIndex = 1;this.BloggerURI.Text = "http://www.blogger.com/feeds/default/blogs";//// label1//this.label1.Location = new System.Drawing.Point(8, 16);this.label1.Name = "label1";this.label1.Size = new System.Drawing.Size(64, 16);this.label1.TabIndex = 2;this.label1.Text = "URL:";//// label2//this.label2.Location = new System.Drawing.Point(8, 48);this.label2.Name = "label2";this.label2.Size = new System.Drawing.Size(64, 24);this.label2.TabIndex = 3;this.label2.Text = "User:";//// label3//this.label3.Location = new System.Drawing.Point(8, 96);this.label3.Name = "label3";this.label3.Size = new System.Drawing.Size(64, 16);this.label3.TabIndex = 4;this.label3.Text = "Password";//// UserName//this.UserName.Location = new System.Drawing.Point(88, 48);this.UserName.Name = "UserName";this.UserName.Size = new System.Drawing.Size(296, 20);this.UserName.TabIndex = 5;this.UserName.Text = "<yourUserName>";//// Password//this.Password.Location = new System.Drawing.Point(88, 88);this.Password.Name = "Password";this.Password.PasswordChar = '*';this.Password.Size = new System.Drawing.Size(296, 20);this.Password.TabIndex = 6;this.Password.Text = "<yourPassword>";//// Go//this.Go.Location = new System.Drawing.Point(440, 16);this.Go.Name = "Go";this.Go.Size = new System.Drawing.Size(104, 24);this.Go.TabIndex = 7;this.Go.Text = "&Go";this.Go.Click += new System.EventHandler(this.Go_Click);//// FeedView//this.FeedView.ImageIndex = -1;this.FeedView.Location = new System.Drawing.Point(16, 160);this.FeedView.Name = "FeedView";this.FeedView.SelectedImageIndex = -1;this.FeedView.Size = new System.Drawing.Size(544, 280);this.FeedView.TabIndex = 8;//// AddEntry//this.AddEntry.Enabled = false;this.AddEntry.Location = new System.Drawing.Point(440, 56);this.AddEntry.Name = "AddEntry";this.AddEntry.Size = new System.Drawing.Size(104, 24);this.AddEntry.TabIndex = 9;this.AddEntry.Text = "&Add...";this.AddEntry.Click += new System.EventHandler(this.AddEntry_Click);//// FeedChooser//this.FeedChooser.Location = new System.Drawing.Point(16, 120);this.FeedChooser.Name = "FeedChooser";this.FeedChooser.Size = new System.Drawing.Size(368, 21);this.FeedChooser.TabIndex = 10;this.FeedChooser.Text = "choose the feed.... ";this.FeedChooser.SelectedIndexChanged += new System.EventHandler(this.FeedChooser_SelectedIndexChanged);//// Blogger//this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);this.ClientSize = new System.Drawing.Size(592, 470);this.Controls.Add(this.FeedChooser);this.Controls.Add(this.AddEntry);this.Controls.Add(this.FeedView);this.Controls.Add(this.Go);this.Controls.Add(this.Password);this.Controls.Add(this.UserName);this.Controls.Add(this.label3);this.Controls.Add(this.label2);this.Controls.Add(this.label1);this.Controls.Add(this.BloggerURI);this.Cursor = System.Windows.Forms.Cursors.Arrow;this.Name = "Blogger";this.Text = "Blogger Demo Application";this.ResumeLayout(false);}
[bloggerDev] Re: Operation TimeOut on Test Server not on LocalHost
[bloggerDev] Re: Operation TimeOut on Test Server not on LocalHost
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: Operation TimeOut on Test Server not on LocalHost
I have installed and am using these references (per the Google Blogger API Documentation's instructions):using Google.GData.Blogger;using Google.GData.Client;using Google.GData.Extensions;They work correctly. I have this same code working on another test site I'm developing. It's running on my localhost as well, but Visual Studio isn't throwing any errors, and I can see the result I want on the localhost. (It's pulling the blog Title, Author, Links, URI, and a bunch of other stuff). The moment I run it on our hosted site (.NET 3.5 Framework) I get this TimeOut error.I followed these instructions: http://code.google.com/apis/blogger/docs/2.0/developers_guide_dotnet.html and installed http://code.google.com/p/google-gdata/downloads/list (1.7.0.1 SDK) I'm able to add the references through Visual Studio, so I know they're installed. I can use them on the localhost. Do I need to add them to my hosted site? They should be built into the application when I post, correct?
--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: Operation TimeOut on Test Server not on LocalHost
I've updated the CNAME so they look like such:Domain name: theflomo.comIP address (A record) 74.208.160.188Name server 1 ns52.1and1.comName server 2 ns51.1and1.comMail server 1 mx01.1and1.com, 10Mail server 2 mx00.1and1.com, 10
Domain name www.theflomo.comName server 1 ghs.google.comName server 2 ghs.goggle.comShould that fix my problem?
--
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
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.
Sunday, January 16, 2011
Re: [bloggerDev] Re: Operation TimeOut on Test Server not on LocalHost
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: 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.
> http://google-gdata.googlecode.com/svn/trunk/clients/cs/samples/blogg...
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?
>
>
> That way I can confirm your libraries are installed correctly, and you are
> authenticating sanely et al.
>
> brett
>
>
>
>
>
>
>
>
>
> > bloggerdev+unsubscribe@googlegroups.com<bloggerdev%2Bunsubscribe@googlegrou ps.com>> 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
> > .--
> > 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.
Blog Archive
-
▼
2011
(100)
-
▼
January
(95)
- Re: [bloggerDev] Is there a way that i can change ...
- [bloggerDev] Re: Extracting unchanged content from...
- [bloggerDev] How to get Post Content
- Re: [bloggerDev] Is there a way that i can change ...
- [bloggerDev] Is there a way that i can change the ...
- [bloggerDev] Re: i can't post comment via GData. i...
- [bloggerDev] Re: i can't post comment via GData. i...
- Re: [bloggerDev] Re: i can't post comment via GDat...
- [bloggerDev] Re: i can't post comment via GData. i...
- Re: [bloggerDev] i can't post comment via GData. i...
- [bloggerDev] i can't post comment via GData. i got...
- Re: [bloggerDev] Extracting unchanged content from...
- [bloggerDev] Extracting unchanged content from a post
- Re: [bloggerDev] Re: Post content extraction
- [bloggerDev] Re: Post content extraction
- Re: [bloggerDev] Post content extraction
- Re: [bloggerDev] Re: Operation TimeOut on Test Ser...
- Re: [bloggerDev] Re: Operation TimeOut on Test Ser...
- [bloggerDev] Post content extraction
- Re: [bloggerDev] OpenID go fault return url
- [bloggerDev] OpenID go fault return url
- Re: [bloggerDev] uploading photo's to blog (new ed...
- Re: [bloggerDev] Re: Operation TimeOut on Test Ser...
- Re: [bloggerDev] Re: Operation TimeOut on Test Ser...
- Re: [bloggerDev] Re: Operation TimeOut on Test Ser...
- [bloggerDev] Re: Operation TimeOut on Test Server ...
- [bloggerDev] Re: Operation TimeOut on Test Server ...
- Re: [bloggerDev] Re: Operation TimeOut on Test Ser...
- [bloggerDev] Re: Operation TimeOut on Test Server ...
- [bloggerDev] Re: Operation TimeOut on Test Server ...
- Re: [bloggerDev] Re: Operation TimeOut on Test Ser...
- Re: [bloggerDev] Re: Operation TimeOut on Test Ser...
- [bloggerDev] Re: Operation TimeOut on Test Server ...
- [bloggerDev] Re: Operation TimeOut on Test Server ...
- Re: [bloggerDev] Operation TimeOut on Test Server ...
- [bloggerDev] Operation TimeOut on Test Server not ...
- Re: [bloggerDev] Re: Get Post using ObjectC
- Re: [bloggerDev] Re: Get Post using ObjectC
- Re: [bloggerDev] uploading photo's to blog (new ed...
- [bloggerDev] Re: Get Post using ObjectC
- Re: [bloggerDev] Get Post using ObjectC
- [bloggerDev] Get Post using ObjectC
- [bloggerDev] uploading photo's to blog (new editor)
- Re: [bloggerDev] Re: Search for blogs in general
- [bloggerDev] Re: Search for blogs in general
- Re: [bloggerDev] Other lay-out pages
- Re: [bloggerDev] Re: Search for blogs in general
- [bloggerDev] Re: Search for blogs in general
- Re: [bloggerDev] Re: Search for blogs in general
- [bloggerDev] Re: Search for blogs in general
- [bloggerDev] Other lay-out pages
- [bloggerDev] Search for blogs in general
- Re: [bloggerDev] posting html content
- [bloggerDev] posting html content
- Re: [bloggerDev] Error while using service.Insert ...
- Re: [bloggerDev] Error while using service.Insert ...
- Re: [bloggerDev] Error while using service.Insert ...
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] Re: Admin API?
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] Re: Get comments (not only summary)
- Re: [bloggerDev] Error while using service.Insert ...
- [bloggerDev] Re: Get comments (not only summary)
- Re: [bloggerDev] Error while using service.Insert ...
- Re: [bloggerDev] Error while using service.Insert ...
- Re: [bloggerDev] Error while using service.Insert ...
- Re: [bloggerDev] Error while using service.Insert ...
- Re: [bloggerDev] Documentation on expr: ?
- Re: [bloggerDev] Re: Having trouble accessing rss ...
- [bloggerDev] Re: Having trouble accessing rss files
- Re: [bloggerDev] Having trouble accessing rss files
- [bloggerDev] Having trouble accessing rss files
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] Error while using service.Insert ...
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] Error while using service.Insert ...
- Re: [bloggerDev] Error while using service.Insert ...
- [bloggerDev] Error while using service.Insert Meth...
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- Re: [bloggerDev] newbie
- [bloggerDev] newbie
- Re: [bloggerDev] Re: Mobile Version Documentation
- [bloggerDev] Re: Mobile Version Documentation
- [bloggerDev] Documentation on expr: ?
-
▼
January
(95)
