문제

I am attempting to extract some HTML from a mailinator email in my android app. I would like jsoup to find a link to the email with a given subject. Using the chrome "inspect element" feature I see the subject like this: <div class="span5 subject ng-binding"> Free Popcorn at Landmark Cinemas </div>. However, jsoup sees it like this: <div class="span 5 subject">{{email.subject}} </div> How can I get jsoup to see the actual email's subject? Should I abandon using jsoup for this and do something with POP3?

도움이 되었습니까?

해결책

My solution: Use yopmail instead of mailinator.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top