It is currently May 1st, 2024, 10:13 pm

Help with gmail following 2-step verification [Solved]

Get help with creating, editing & fixing problems with skins
User avatar
jsmorley
Developer
Posts: 22631
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Help with gmail following 2-step verification

Post by jsmorley »

Ah, so it isn't... Time to clean my glasses!

What spx is saying is that where you have

https://******:*********@gmail.google.com/gmail/feed/atom

under [Variables], it should be

Url=https://******:*********@gmail.google.com/gmail/feed/atom

Also, in this measure:

Code: Select all

[MeasureMailCount]
Measure=Plugin
Plugin=Plugins\WebParser.dll
Url=#Url#
RegExp="(?siU)<fullcount>(.*)</fullcount>"
StringIndex=2
FinishAction=!Execute [!RainmeterRedraw]
It should be StringIndex=1, not StringIndex=2. Each WebParser measure that has a URL that goes to a web site and has a RegExp= statement generates it's own set of StringIndexes, they don't carry over from measure to measure unless you are using URL=[MeasureName] to create a "child" WebParser measure.
SgtMorphine
Posts: 8
Joined: February 7th, 2011, 10:40 pm

Re: Help with gmail following 2-step verification

Post by SgtMorphine »

I put the stars there, I do have my username and password in it.
User avatar
jsmorley
Developer
Posts: 22631
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Help with gmail following 2-step verification

Post by jsmorley »

SgtMorphine wrote:I put the stars there, I do have my username and password in it.
The problem isn't the stars, I understand why you replaced those when posting here. The problem is the missing "Url=" at the beginning to define the variable "Url", which you use later with Url=#Url# on the WebParser measure.
SgtMorphine
Posts: 8
Joined: February 7th, 2011, 10:40 pm

Re: Help with gmail following 2-step verification

Post by SgtMorphine »

Oh I see. Thanks, let me look at that page again. Ahhhh, thank you~! It's working now. I have no idea how that changed because I can't remember doing anything around that part of the file.
User avatar
jsmorley
Developer
Posts: 22631
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Help with gmail following 2-step verification [Solved]

Post by jsmorley »

Glad it's working. Thanks to spx for spotting that.