CRON strings have their limitations. One limitation is that to accurately get every other Friday, you would need to do calendar math to account for the months with odd number of days, including leap day.
As a makeshift solution, you can do every "even" Friday with this CRON String:
0 0 17 0/2 * FRI

Note, this CRON will have back to back Fridays on some months (August 26, September 2), and will have every third Fridays on other months (May 20, June 10). If a precise "every other Friday" is needed, it should be programatically handled in a custom script where you can do calendar math.