Hi I know this is not an efficient way to do it but I did this way. Note that data1=[{}]; is wrong notation, I changed to data1={{}};
In[72]:= data3 =
Table[EuclideanDistance[data1[[j]], data1[[i]]], {i,
Length@data1}, {j, Length@data1}];
In[73]:= Max@data3
Out[73]= 8.50821
In[74]:= Position[data3, Max@data3]
Out[74]= {{5, 68}, {68, 5}}
In[75]:= data1[[5]]
Out[75]= {-1.47388, 2.66873, -0.915369}
In[76]:= data1[[68]]
Out[76]= {5.29808, -1.95733, 1.34955}
Show[HighlightMesh[ConvexHullMesh[data1], Style[2, Opacity[0.5]]],
Graphics3D[{Red, Line[{data1[[5]], data1[[68]]}]}],
Graphics3D[Point[data1]]]
Show[ListPointPlot3D[data1],
Graphics3D[{Red, Line[{data1[[5]], data1[[68]]}]}]]