diff --git a/javadoc/allclasses-frame.html b/javadoc/allclasses-frame.html index 92e4f5b24..2b1ee1740 100644 --- a/javadoc/allclasses-frame.html +++ b/javadoc/allclasses-frame.html @@ -3,7 +3,7 @@
-public class YoutubeJavaScriptExtractor +extends Object+
+ This class handling fetching the JavaScript file in order to allow other classes to extract the + needed functions.
Modifier and Type | +Method and Description | +
---|---|
static String |
+extractJavaScriptCode()
+Same as
+extractJavaScriptCode(String) but with a constant
+ value for videoId. |
+
static String |
+extractJavaScriptCode(String videoId)
+Extracts the JavaScript file.
+ |
+
@Nonnull +public static String extractJavaScriptCode(String videoId) + throws ParsingException+
videoId
- Does not influence the result, but a valid video id may help in the chance
+ that YouTube tracks it.ParsingException
- If the extraction failed.@Nonnull +public static String extractJavaScriptCode() + throws ParsingException+
extractJavaScriptCode(String)
but with a constant
+ value for videoId.
+ Possible because the videoId has no influence on the result.
+ + In the off chance that YouTube tracks with which video id the request is made, it may make + sense to pass in video ids.
ParsingException