I have two planes $(A): u_{1}x + v_{1}y + w_{1}z = d_{1}$ and $(B): u_{2}x + v_{2}y + w_{2}z = d_{2}$.
They intersect together, then they yield a line $(L)$ that has a direction vector $M (x_{M},y_{M},z_{M})$
$M$ is the cross product of the normal vectors of $A$ and $B$
$M = (u_{1},v_{1},w_{1})×(u_{2},v_{2},w_{2})$
The parametric equations of the line $L$ of a parameter $t$ are:
$x = x_{P} + x_{M}.t$
$y = y_{P} + y_{M}.t$
$z = t$
I intersect this line $L$ with an spheroid $E$ of semi-axis major $a$ in the equatorial plane $xoy-Plane$ along $x-axis$ and $y-axis$ and semi-axis minor $b$ along $z-axis$
My problem is how to find the coordinates of the two points of intersection?
You need to restric your freedom, and things will get easier.
Introduce a 3rd plane, almost any will do as long as it its normal is independent from the other two normals.
Then this gives you a system that will intersect at a point, and that point will be on your line.
Probably the simplest $x = 0$
Then solve
$v_1y + w_1z = d_1\\v_2y + w_2z = d_2$
$(0, \frac {w_2d_1 - w_1d_2}{v_1w_2 - w_1v_2},\frac {v_1d_1 - v_2d_2}{v_1w_2 - w_1v_2})$ is on your line (unelss $v_1w_2 - w_1v_2= 0$, in which case you need a different plane).