Advertisement
Lisa678

resyConfig,conf

Jul 2nd, 2024 (edited)
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. ############
  2. # ResyKeys #
  3. ############
  4. # Your user profile API key. Can be found once you're logged into Resy in most "api.resy.com" network
  5. # calls (i.e. Try they "/find" API call when visiting a restaurant). Open your web console and look for a request header
  6. # called "authorization".
  7. # e.g.
  8. # resyKeys.api-key="MY_API_KEY"
  9. resyKeys.api-key="----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------"
  10. # Your user profile authentication token when logging into Resy. Can be found once you're logged into
  11. # Resy in most "api.resy.com" network calls (i.e. Try the "/find" API call when visiting a restaurant). Open your web
  12. # console and look for a request header called "x-resy-auth-token".
  13. # e.g.
  14. # resyKeys.auth-token="MY_AUTH_TOKEN"
  15. resyKeys.auth-token="--------------------------------"
  16.  
  17. ######################
  18. # ReservationDetails #
  19. ######################
  20. # The date you want to make the reservation in YYYY-MM-DD format. This should be set to the day after the
  21. # last available day with restaurant reservations as this is the day you want to snipe for a reservation once they
  22. # become available.
  23. # e.g.
  24. # resDetails.date="2099-01-30"
  25. resDetails.date="2024-07-23"
  26. # Size of the party reservation
  27. # e.g.
  28. # resDetails.party-size=2
  29. resDetails.party-size=2
  30. # The unique identifier of the restaurant you want to make the reservation at. Can be found when viewing
  31. # available reservations for a restaurant as a query parameter in the `/find` API call if you have the web console open.
  32. # e.g.
  33. # resDetails.venue-id=123
  34. resDetails.venue-id=---
  35. # Priority list of reservation times and table types. Time is in military time HH:MM:SS format. This
  36. # allows full flexibility on your reservation preferences. For example, your priority order of reservations can be...
  37. # * 18:00 - Dining Room
  38. # * 18:00 - Patio
  39. # * 18:15
  40. # If you have no preference on table type, then simply don't set it and the bot will pick a reservation for that time
  41. # slot regardless of the table type.
  42. # e.g.
  43. # resDetails.res-time-types=[
  44. # {reservation-time="18:00:00", table-type="Dining Room"},
  45. # {reservation-time="18:00:00", table-type="Patio"},
  46. # {reservation-time="18:00:00"}
  47. # ]
  48. resDetails.res-time-types={reservation-time="18:15:00"}
  49.  
  50. #############
  51. # SnipeTime #
  52. #############
  53. # Hour of the day when reservations become available and when you want to snipe
  54. # e.g.
  55. # snipeTime.hours=9
  56. snipeTime.hours=0
  57. # Minute of the day when reservations become available and when you want to snipe
  58. # e.g.
  59. # snipeTime.minutes=0
  60. snipeTime.minutes=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement