Yahoo Pipes : rss feed source Error? - rss

i want to know if everyone is able to see the following URL successfully, because i am able to do so.
but then, i try to use the URL above as my feed source in yahoo pipes, they show the following error :
Error fetching https://script.googleusercontent.com/macros/echo?user_content_key=gX6zUbmTiZ8Xk9DYCva__ITpLokoAmTZpASHhRYqYkI4-y9ygjOouyT1wW3zVqfPvTJeoB51eSUF1uBNnrOdX0Ca7qkxG-AVm5_BxDlH2jW0nuo2oDemN9CCS2h10ox_1xSncGQajx_ryfhECjZEnFxaYc6GIijDhscoufaRfGaGTvRSfNop4NBZzEpxVXeODMbkDKfYwPS7scWYSCz-orFuq7IVj2xyuyFFanCEzplPVH40WZiiUR_LfmYbIuwY&lib=M-HuCTwEJYePNCQj8khcWIIM8auVI7v_L. Response: OK (200). Error: Invalid XML document. Root cause: org.xml.sax.SAXParseException; lineNumber: 921; columnNumber: 5; The element type "meta" must be terminated by the matching end-tag " ".
how can i resolve this problem ? i try to use different tools on source modules, keep showing the same error.
i don't know if the error either comes from yahoo pipes or my rss url, or even something else.

You can use a Fetch Data module with a "Path to item list" set to "entry".
I took it here and it works for me.

Related

Microsoft-Cognitive topic detection issue

I'm trying to use the topic detection API from Microsoft_cognitive through R and is not working ('mscstexta4r' package, I provided the key to it). My subscription is through my university and I'm using my laptop at home. Could that be the reason of the problem?
Specifically, the error I'm getting is 'Error: mscstexta4r: Not Found (HTTP 404). - { "statusCode": 404, "message": "Resource not found" }'
Please see attached screenshot of my R console. The stoplist that I'm using is a customized one and the data has 760 '.txt' documents of no more than 5KB each one (the total is 225KBScreenshot of R console)
Looks like you have a typo in the URL.
https://westus.api.cognitive.microsoft.com/text**a**/analytics/v2.0/
To submit a job the POST URL should be:
https://westus.api.cognitive.microsoft.com/text/analytics/v2.0/topics
To query for the job status, it’s a GET request to:
https://westus.api.cognitive.microsoft.com/text/analytics/v2.0/operations/{operationId}
See the Text Analytics API reference for more details about the parameters.

Sending a POST request using Balkan's requests lib with data and files (Robot Framework)

I'm trying to send a request (post) using Balkan's requests library from test case written in Robot Framework http://bulkan.github.io/robotframework-requests/#Post with two parameters as a data and a file. Unfortunatelly, all the time I have the same error like described below.
My Test Case:
X_T_Should Upload File Correctly And Get HTTP 200
Send Default File To SUT And Return Response
*** Keywords ***
Send Default File To SUT And Return Response
[Arguments] ${user_login}=${USER_LOGIN} ${user_password}=${USER_PASSWORD}
${url}= Get URL
${auth}= Create List ${user_login} ${user_password}
Create Session rm ${url} auth=${auth}
&{headers}= Create Dictionary Content-Type=application/x-www-form-urlencoded
&{data}= Create Dictionary name=file filename=${DEFAULT_FILE_NAME}
${file_data}= Get Binary File ${CURDIR}${/}Resources${/}${DEFAULT_FILE_NAME}
&{files}= Create Dictionary file=${file_data}
${resp}= Post Request rm ${UPLOAD_URI} files=${files} data=${data} headers=${headers}
Delete All Sessions
Error (from Robot Framework):
20160525 09:47:10.645 : FAIL : ValueError: Data must not be a string.
The problem is with the keyword Post Request. When I do not set an argument files or data that everything is well but if I set both args. that I see these strange error.
It is a bug in library?
According to the documentation, the files parameter is a list of file names. You are passing the actual file contents into the keyword. This might explain why you are getting "Data must not be a string".
We've encountered this exception also. The exception seems to be raised in Requests Python library.
At line 119 of requests/models.py,
elif isinstance(data, basestring)
checks whether data is a string. And robotframework-requests seems to be casting data into a string almost always. There is an issue for robotframework-requests regarding the exception.

You have requested a non-existent service "projet_rating.manager.rating"

I am getting the following error message: "You have requested a non-existent service "projet_rating.manager.rating" - Help please.
Two possibilities come to mind:
1) Somewhere in your application you have a controller that includes $this->container->get("projet_rating.manager.rating")
2) Somewhere in a config file you create a service that includes as an argument %"projet_rating.manager.rating"%.
If you're using an IDE that allows searching multiple files for a string, try searching for "projet_rating.manager.rating" in ...src/ or ...app/config

Error while Uploading file for API in apigee

I have an existing API proxy in Apigee edge. When I am trying to edit and save any policy I am getting below error.
Error while Uploading file for API <api name>.
org.apache.xerces.dom.ElementNSImpl cannot be cast to com.apigee.messaging.config.beans.TargetConnection
I am not able to figureout how to resolve this.
Thanks in advance.
When you get an error message like 'cannot be cast to...' that suggests that the field is expecting a certain type (message type in your case, like a request object or response object).
Try ensuring that the variable you enter into that particular field is a message type. It may be that the variable you are using is only a subset of a whole message.

Wordpress parse error unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING

Mates, two days ago, the webhosting of a site i'm administrating went down.
Now it seems to be back working, but when I try to acces to wp-admin i recieve the following error message:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE,
expecting T_STRING or T_VARIABLE or T_NUM_STRING in
/home/ohmycut/public_html/wp-settings.php on line 80
These are lines from 75 to 85:
// Include the wpdb class and, if present, a db.php database drop-in.
require_wp_db();
// Set the database table prefix and the format specifiers for database table columns.
$GLOBALS['table_prefix'] = $table_prefix;
wp_set_wpdb_vars();
// Start the WordPress object cache, or an external object cache if the drop-in is present.
wp_start_object_cache();
I, honestly, don't understand why am i getting this error.
Any ideas?
thanks!
Try contacting the web hosting service to see if they can revert it to a state before the service went down.

Resources