You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title=models.CharField("Nombre del puesto", max_length=220)
61
55
description=models.TextField("Texto de la oferta", max_length=2000)
62
-
salary=models.CharField(
63
-
"Salario o rango salarial", max_length=80, blank=True
64
-
)
56
+
salary=models.CharField("Salario o rango salarial", max_length=80, blank=True)
65
57
contract_type=models.CharField(
66
58
"Tipo de contrato",
67
59
max_length=3,
@@ -107,7 +99,8 @@ def get_full_url(self):
107
99
defsave(self, *args, **kwargs):
108
100
already_exists=self.pkisnotNone
109
101
super().save(*args, **kwargs)
102
+
''' tweepy.error.TweepError: [{'message': 'You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints (e.g. media post, oauth) only. If you need access to this endpoint, you may need a different access level. You can learn more here: https://developer.twitter.com/en/portal/product', 'code': 453}]
110
103
if not already_exists and self.approved:
111
104
t = Twitter()
112
105
msg = f'💼 Oferta de empleo: {self} {self.get_full_url()}'
0 commit comments