yahoo

Debugging IMAP access of Yahoo in 2018

允我心安 提交于 2019-12-11 08:02:14
问题 I am unable to authenticate IMAP with Yahoo and cannot pinpoint the cause. Can anyone help me to get more information other than the exception below? "javax.mail.AuthenticationFailedException: [AUTHENTICATIONFAILED] Invalid credentials (Failure)" Yahoo seems to have had many revisions to authentication over the years so that is why I put the current year in the title. Here is my setup: On Yahoo: I have enabled less secure apps; I have checked and recheck credentials. On my linux box: I have

Connecting to Yahoo! mail from Ruby

做~自己de王妃 提交于 2019-12-11 07:39:42
问题 I try to connect to mail Yahoo! account from Ruby using both net/imap and net/pop. But I randomly get error EOFile (from IMAP) or Connection Refused/Reset by peer (from POP). Has anybody tried to connect to Yahoo! Mail and had some experiences about it? 回答1: There's a bug in ruby's net/imap library that is exposed when connecting to Yahoo. The fix is straightforward and described here: http://redmine.ruby-lang.org/issues/4509 Basically, edit imap.rb and change the inner loop of search

authentication error in sending mail from yahoo in c# windows application

匆匆过客 提交于 2019-12-11 06:12:57
问题 i am trying to send email from my software using the smtp of yahoo but it shows the following error "The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.1 Authentication required". I know about the less secure apps setting in google but i don't know about the settings in yahoo. the same code runs fine with the gmail account credentials. here is the code for reference. string EmailFrom = "test@yahoo.com"; string EmailTo = "test@gmail

Responsive Design in Email - Issue with attribute selectors in Yahoo

廉价感情. 提交于 2019-12-11 05:04:40
问题 I'm trying to create a responsive email template to send to my company's users. Our list contains users from all sorts of ISPs like Gmail/Yahoo, etc. We have the responsive design working in most instances but we are having issues with Yahoo. The issue is that in Yahoo, it ignores the media query css wrapper and uses the responsive css on the desktop version. In the below example @media only screen and (max-width: 580px) gets ignored and our email displays with a width of 320px on desktop.

Yahoo OAuth question

前提是你 提交于 2019-12-11 04:59:17
问题 I'm keep getting oauth_problem=consumer_key_unknown error when trying oauth https://api.login.yahoo.com/oauth/v2/get_request_token I'm pretty sure my consumer key is correct because it works locally (Runs via 127.0.0.1). Just keep giving me oauth_problem=consumer_key_unknown when I try it on my server. Any ideas? 回答1: is it sending the right domain in requireSession (4th argument should be something like 'http://mydomain.com/' which should match exactly what you used to sign up... 来源: https:/

Does Yahoo finance have data request upper limit. Is there an alternative or workaround?

浪尽此生 提交于 2019-12-11 03:05:03
问题 Hi there I have scanned this site and Google for any latest updates on downloading stock info from Yahoo Finance. I have not had much success. As I am testing my app, I came across an 404 server not found exception using the following C# code snippet: string urlTemplate = @"http://ichart.finance.yahoo.com/table.csv?s=[symbol]&a=" + "[startMonth]&b=[startDay]&c=[startYear]&d=[endMonth]&e=" + "[endDay]&f=[endYear]&g=d&ignore=.csv"; ... WebClient wc = new WebClient(); try { history = wc

fail to retrieve request token for yahoo integration in android?

左心房为你撑大大i 提交于 2019-12-11 02:05:09
问题 I am trying to integrate yahoo in my app. I am trying, private static final String YAHOO_CALLBACK_URI = "MyApp://oauth"; public static final String YAHOO_REQUEST_TOKEN_URL = "http://api.login.yahoo.com/oauth/request_token";//api.login.yahoo.com public static final String YAHOO_ACCESS_TOKEN_URL = "http://api.login.yahoo.com/oauth/access_token"; public static final String YAHOO_AUTHORIZE_URL = "http://api.login.yahoo.com/authorize"; CommonsHttpOAuthConsumer consumer = new

Different results for the same query from yahoo.finance.quotes. (YQL)

寵の児 提交于 2019-12-10 22:52:22
问题 I'm using YQL to retrieve some financial data. And I have noticed that lately I'm getting different results for the same query from yahoo.finance.quotes. For example: Query for oil price done 5 times. "LastTradeWithTime": "9:09pm - <b>38.29</b>", "LastTradeWithTime": "1:33am - <b>38.66</b>", "LastTradeWithTime": "2:32am - <b>38.72</b>", "LastTradeWithTime": "2:32am - <b>38.72</b>", "LastTradeWithTime": "9:09pm - <b>38.29</b>", (But when you test the same query from the YQL console all results

Yahoo transforms height into min-height

爱⌒轻易说出口 提交于 2019-12-10 17:36:07
问题 I have just stumbled across the fact that Yahoo mail is transforming all height attributes into min-height. Is there a workaround for this? <div style="width:55px; height:55px; overflow:hidden;"> <img alt="user pic" src="assets/main.jpeg" width="55px" /> </div> The goal of the code above is to hide the bottom part of the image if it's higher than 55px. I've tested this in hotmail and aol and it works fine. Only Yahoo seems to transform my height into min-height: <div style="width:55px; min

Get Logged in user's email id yahoo oauth php

旧街凉风 提交于 2019-12-10 14:46:47
问题 I have created an application which allows users to log in using their Yahoo credentials, I am able to retrieve some info like nick name and guid, but I am not able to retrieve email id of the logged in user. I have given permission to Read contacts,mail,status apis to my yahoo application. I am using Yahoo PHP SDK. Can someone point what stuff am I missing here. 回答1: Activate Social Directory -> Read Public from http://developer.apps.yahoo.com in your project. Then (in code): $profile =