I would like to know the integer solutions to the non-linear equations
$$x=\frac{\sqrt7}{7}\left(\frac{t^2+\frac{3}{7}}{t^2-\frac{3}{7}}\right)$$ and
$$y=\frac{2\sqrt{7}}{7}\left(\frac{t}{t^2 - \frac{3}{7}} \right)$$.
where $t \in \mathbb{R}$ and $t^2 \neq \frac{3}{7}$.
I was wondering if there are general techniques for finding integer values of such equations. Finding separate integer values for $x$ and $y$ is not that hard. But making sure both $x$ and $y$ are integers is rather difficult. With the aid of computer, I have been able to find values for $x$ and $y$ by solving the equation for integers values of $y$ ranging between $1$ to $1000$, and checking if the corresponding $x$ values would be an integer. Those values are $(2,3)$ and $(218, 333)$ given by $t=\frac{\sqrt{7}}{21}+\frac{2}{3}$ and $t=\frac{\sqrt{7}}{2331}+\frac{218}{333}$.
I have not been able to come up with a general pattern. Do we even know if there are infinitely many solutions?
If you use Python, there is a Sympy module specially dedicated to Diophantine equations: https://docs.sympy.org/latest/modules/solvers/diophantine.html