Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error 403 failed to set up #16

Open
carealtor opened this issue Jan 2, 2025 · 7 comments
Open

Error 403 failed to set up #16

carealtor opened this issue Jan 2, 2025 · 7 comments

Comments

@carealtor
Copy link

I've tried to re-install Redfin several times over the last several days. Never works and I get error 403 and failed to set up.
Screenshot 2025-01-01 184416
Screenshot 2025-01-01 184244

@foxalerts23
Copy link

Same.
Deleted, restarted, added and get error 403.

@broyuken
Copy link

broyuken commented Jan 2, 2025

add me to that list as well

1 similar comment
@bindedig
Copy link

bindedig commented Jan 2, 2025

add me to that list as well

@gourdo1
Copy link

gourdo1 commented Jan 16, 2025

Broken for me with 403 errors as of Jan 10, 2025.

@broyuken
Copy link

@dreed47 isnt developing this anymore, it’s dead and gonna be removed from hacs

@gourdo1
Copy link

gourdo1 commented Jan 17, 2025

FWIW, my quick and dirty workaround for this integration being abandoned is to use a NodeRed Exec node with the below command line and push the result into a sensor node:

curl -k -L "{YOUR_PROPERTY'S_REDFIN_URL}" -A "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:134.0) Gecko/20100101 Firefox/134.0" | grep -E -o '"predicted_value".{20}' | cut -d: -f2 | cut -d, -f1

@kzaoaai
Copy link

kzaoaai commented Jan 22, 2025

curl -k -L "{YOUR_PROPERTY'S_REDFIN_URL}" -A "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:134.0) Gecko/20100101 Firefox/134.0" | grep -E -o '"predicted_value".{20}' | cut -d: -f2 | cut -d, -f1

Thanks for the inspiration. I created a simple command_line sensor based on it.

  - sensor:
      name: Redfin Price
      unique_id: redfin_price
      command: >
        curl -k -L '{URL_GOES_HERE}' -A 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:134.0) Gecko/20100101 Firefox/134.0' | grep -E -o '\"predicted_value\".{20}' | cut -d: -f2 | cut -d, -f1 | awk '{if ($1 > 0) print $1; else print "ERROR"}'
      device_class: monetary
      unit_of_measurement: "$"
      scan_interval: 86400

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants