Posts by Raul Correia • 331 points
6 posts
-
13
votes5
answers554
viewsQ: Error passing URL as parameter... Joeblogs & Htmlagilitypack
Main namespace ReaderXML { class Program { static void Main(string[] args) { var website = LeitorDeXML("http://SITE ORIGEM/").ToArray(); var total = website.Count(); for (int i = 1; i < total;…
-
3
votes2
answers93
viewsQ: Only take the last links from a sitemap
using HtmlAgilityPack; using JoeBlogs; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml; using System.Xml.Linq;…
-
1
votes0
answers84
viewsQ: Repeated post in wordpress c#
I have the following code, using the Joeblogs Wrapper private static void Postagem(string website) { try { string link = "http://MEU.SITE"; string username = "user_wp"; string password = "senha_wp";…
-
1
votes0
answers99
viewsQ: Prevent c# Repeated Posts in Wordpress?
I have the following code, using the Joeblogs Wrapper private static void Postagem(string website) { try { string link = "http://MEU.SITE"; string username = "user_wp"; string password = "senha_wp";…
-
1
votes0
answers89
viewsQ: Error passing parameter to function
I’ve lost full access to my websites and I’m trying to pass the posts from it to a new one. I have a code that reads the sitemap and takes the urls and another who picks up the url, separates the…
-
3
votes2
answers111
viewsQ: Auto Publication Wordpress c#
I want a C# application to post on a Wordpress blog. The post title would be the variable value title and the article would be the variable html. How do I get that? Note: Console project.…